mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Store selector * Footer * Notifications * Checkout Appearance * Users list * Forms * Emails * Pay Button * Edit Dictionary * Remove newlines, fix typos * Forms * Pull payments and payouts * Various pages * Use local docs link * Fix * Even more translations * Fixes #6325 * Account pages * Notifications * Placeholders * Various pages and components * Add more
60 lines
2.7 KiB
Text
60 lines
2.7 KiB
Text
@model BTCPayServer.Controllers.UIManageController.NotificationSettingsViewModel
|
|
@{
|
|
ViewData.SetActivePage(ManageNavPages.Notifications, StringLocalizer["Notification Settings"]);
|
|
}
|
|
|
|
<form method="post" asp-action="NotificationSettings">
|
|
<div class="sticky-header">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a asp-controller="UINotifications" asp-action="Index" text-translate="true">Notifications</a>
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page" text-translate="true">@ViewData["Title"]</li>
|
|
</ol>
|
|
<h2 text-translate="true">@ViewData["Title"]</h2>
|
|
</nav>
|
|
<button id="page-primary" type="submit" class="btn btn-primary" name="command" value="update">Save</button>
|
|
</div>
|
|
<partial name="_StatusMessage" />
|
|
<div class="row">
|
|
<div class="col-xl-8 col-xxl-constrain">
|
|
@if (Model.All)
|
|
{
|
|
<p text-translate="true">All notifications are disabled.</p>
|
|
<button type="submit" class="btn btn-primary" name="command" value="enable-all" text-translate="true">Enable notifications</button>
|
|
}
|
|
else
|
|
{
|
|
<p text-translate="true">To disable notification for a feature, kindly toggle off the specified feature.</p>
|
|
@for (var index = 0; index < Model.DisabledNotifications.Count; index++)
|
|
{
|
|
var item = Model.DisabledNotifications[index];
|
|
<div class="d-flex align-items-center my-3">
|
|
<input type="hidden" asp-for="DisabledNotifications[index].Value" />
|
|
<input type="checkbox" asp-for="DisabledNotifications[index].Selected" class="btcpay-toggle me-3" />
|
|
<label class="form-check-label cursor-pointer" asp-for="DisabledNotifications[index].Selected" text-translate="true">@item.Text</label>
|
|
</div>
|
|
}
|
|
<div class="mt-4">
|
|
<button type="submit" class="btn btn-secondary" name="command" value="disable-all" text-translate="true">Disable all notifications</button>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<script>
|
|
function toggleAllCheckboxes(checkbox) {
|
|
var checkboxes = document.querySelectorAll('.btcpay-toggle');
|
|
var label = document.getElementById('toggleAllLabel');
|
|
var isChecked = checkbox.checked;
|
|
|
|
checkboxes.forEach(function (item) {
|
|
item.checked = isChecked;
|
|
});
|
|
|
|
label.textContent = isChecked ? 'Disable All' : 'Enable All';
|
|
}
|
|
</script>
|
|
|