mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
21 lines
665 B
Text
21 lines
665 B
Text
@model BTCPayServer.Components.Notifications.NotificationsViewModel
|
|
@addTagHelper *, BundlerMinifier.TagHelpers
|
|
|
|
<div id="NotificationsRecent">
|
|
|
|
@if (Model.Last5.Any())
|
|
{
|
|
<div class="d-flex align-items-center justify-content-between mb-3">
|
|
<h4 class="mb-0">Recent Notifications</h4>
|
|
<a asp-controller="UINotifications" asp-action="Index">View all</a>
|
|
</div>
|
|
<partial name="Components/Notifications/List" model="Model"/>
|
|
}
|
|
else
|
|
{
|
|
<h4 class="mb-3">Notifications</h4>
|
|
<p class="text-secondary mt-3">
|
|
There are no recent unseen notifications.
|
|
</p>
|
|
}
|
|
</div>
|