mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
* UI: Move section navigation to sidebar * Scroll active nav link into view * Move CTAs to top right * Server Settings: Make Policies first page * Responsive table fixes * Spacing fixes * Add breadcrumb samples * store settings fixes * payment request fixes * updates pull payment title * adds invoice detail fix * updates server settings breadcrumbs + copy fix * Don't open Server Settings on Plugins page * Add breadcrumbs to pull payment views * adds breadcrumbs to account * server and store breadcrumb fixes * fixes access tokens * Fix payment processor breadcrumbs * fixes webhook 404 * Final touches * Fix test * Add breadcrumb for email rules page * Design system updates --------- Co-authored-by: dstrukt <gfxdsign@gmail.com>
32 lines
1.2 KiB
Text
32 lines
1.2 KiB
Text
@model ServerEmailsViewModel
|
|
@{
|
|
ViewData.SetActivePage(ServerNavPages.Emails, "Emails");
|
|
}
|
|
|
|
<form method="post" autocomplete="off">
|
|
<div class="sticky-header">
|
|
<h2>@ViewData["Title"]</h2>
|
|
<button type="submit" class="btn btn-primary" name="command" value="Save" id="Save">Save</button>
|
|
</div>
|
|
<partial name="_StatusMessage" />
|
|
<div class="form-group mb-4">
|
|
<div class="d-flex align-items-center">
|
|
<input asp-for="EnableStoresToUseServerEmailSettings" type="checkbox" class="btcpay-toggle me-3"/>
|
|
<div>
|
|
<label asp-for="EnableStoresToUseServerEmailSettings" class="form-check-label"></label>
|
|
<div class="text-muted">
|
|
This can be overridden at the Store level.
|
|
<a href="https://docs.btcpayserver.org/Notifications/#server-emails" target="_blank" rel="noreferrer noopener">
|
|
<vc:icon symbol="info" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<partial name="EmailsBody" model="Model" />
|
|
<partial name="EmailsTest" model="Model" />
|
|
</form>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|