mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
62 lines
2.5 KiB
Text
62 lines
2.5 KiB
Text
@model BTCPayServer.Controllers.UIManageController.NotificationSettingsViewModel
|
|
@{
|
|
ViewData.SetActivePage(ManageNavPages.Notifications, "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">Notifications</a>
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page">@ViewData["Title"]</li>
|
|
</ol>
|
|
<h2>@ViewData["Title"]</h2>
|
|
</nav>
|
|
<button 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>All notifications are disabled.</p>
|
|
<button type="submit" class="btn btn-primary" name="command" value="enable-all">Enable notifications</button>
|
|
}
|
|
else
|
|
{
|
|
<p>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">
|
|
@item.Text
|
|
</label>
|
|
</div>
|
|
}
|
|
<div class="mt-4">
|
|
<button type="submit" class="btn btn-secondary" name="command" value="disable-all">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>
|
|
|