btcpayserver/BTCPayServer/Views/UIManage/NotificationSettings.cshtml

61 lines
2.7 KiB
Text
Raw Normal View History

2022-01-07 12:32:00 +09:00
@model BTCPayServer.Controllers.UIManageController.NotificationSettingsViewModel
@{
ViewData.SetActivePage(ManageNavPages.Notifications, StringLocalizer["Notification Settings"]);
}
<form method="post" asp-action="NotificationSettings">
<div class="sticky-header">
2024-06-23 19:38:34 +02:00
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a asp-controller="UINotifications" asp-action="Index" text-translate="true">Notifications</a>
2024-06-23 19:38:34 +02:00
</li>
<li class="breadcrumb-item active" aria-current="page" text-translate="true">@ViewData["Title"]</li>
2024-06-23 19:38:34 +02:00
</ol>
<h2 text-translate="true">@ViewData["Title"]</h2>
2024-06-23 19:38:34 +02:00
</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>