mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-01 05:04:28 +01:00
* Store Selector: Create first store button * Add setup guide to homepage * Policy update for stores list * Fix test * Initial create store button as primary * Add notifications list to homepage * Remove back to list from store create view * Adapt content padding on desktop * Add store home view with setup guide * Fix active page nav highlighting * Test fix * Remove What's Next section * Rename Store Home to Dashboard * Fix Lightning setup link * Add tests for store setup guide * Update BTCPayServer/Views/Home/Home.cshtml Co-authored-by: Pavlenex <pavle@pavle.org> * Update BTCPayServer/Views/Stores/Dashboard.cshtml Co-authored-by: Pavlenex <pavle@pavle.org> * Remove setup guide on global homepage * Remove Shopify setup link from nav * Fix content container max-width on desktop Co-authored-by: Pavlenex <pavle@pavle.org>
22 lines
663 B
Plaintext
22 lines
663 B
Plaintext
@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="Notifications" 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>
|