mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
* Improve and unify page headers * Altcoin test fixes * Update BTCPayServer/Views/Apps/UpdateCrowdfund.cshtml Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> * Update BTCPayServer/Views/Apps/UpdateCrowdfund.cshtml Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> * Fix missing store name in pairing view * Fix CanUsePairing test * Bump header navigation font size * Use partial tag instead of Html.PartialAsync in views As suggested by @nicolasdorier. These are equivalent, see details [here](https://docs.microsoft.com/en-us/aspnet/core/mvc/views/partial?view=aspnetcore-3.1#partial-tag-helper). * Fix docs link As in #2432. * Update BTCPayServer/Views/Wallets/SignWithSeed.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> * Update BTCPayServer/Views/Wallets/WalletSendVault.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> * Update BTCPayServer/Views/Wallets/WalletTransactions.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>
46 lines
1.8 KiB
Text
46 lines
1.8 KiB
Text
@using BTCPayServer.Abstractions.Contracts
|
|
@model BTCPayServer.Controllers.ManageController.NotificationSettingsViewModel
|
|
@inject IEnumerable<INotificationHandler> NotificationHandlers
|
|
@{
|
|
ViewData.SetActivePageAndTitle(ManageNavPages.Notifications, "Notification preferences");
|
|
}
|
|
|
|
<partial name="_StatusMessage" />
|
|
|
|
<form method="post" asp-action="NotificationSettings">
|
|
@if (Model.All)
|
|
{
|
|
<div>
|
|
All notifications are disabled.
|
|
<button type="submit" class="btn btn-primary" name="command" value="enable-all">Enable</button>
|
|
</div>
|
|
}
|
|
else
|
|
{
|
|
<div class="form-group">
|
|
|
|
<label> Do not receive notifications for</label>
|
|
|
|
<div class="card ">
|
|
|
|
<ul class="list-group list-group-flush">
|
|
@for (var index = 0; index < Model.DisabledNotifications.Count; index++)
|
|
{
|
|
var item = Model.DisabledNotifications[index];
|
|
<li class="list-group-item">
|
|
<input type="hidden" asp-for="DisabledNotifications[index].Value"/>
|
|
<input type="checkbox" asp-for="DisabledNotifications[index].Selected" class="form-check-inline"/>
|
|
<label class="mb-0 cursor-pointer" asp-for="DisabledNotifications[index].Selected">
|
|
@item.Text
|
|
</label>
|
|
</li>
|
|
}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<button type="submit" class="btn btn-secondary" name="command" value="disable-all">Disable all</button>
|
|
<button type="submit" class="btn btn-primary" name="command" value="update">Save</button>
|
|
</div>
|
|
}
|
|
</form>
|