mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
0f8da123b8
* UI: Move section navigation to sidebar * Scroll active nav link into view * Move CTAs to top right * Server Settings: Make Policies first page * Responsive table fixes * Spacing fixes * Add breadcrumb samples * store settings fixes * payment request fixes * updates pull payment title * adds invoice detail fix * updates server settings breadcrumbs + copy fix * Don't open Server Settings on Plugins page * Add breadcrumbs to pull payment views * adds breadcrumbs to account * server and store breadcrumb fixes * fixes access tokens * Fix payment processor breadcrumbs * fixes webhook 404 * Final touches * Fix test * Add breadcrumb for email rules page * Design system updates --------- Co-authored-by: dstrukt <gfxdsign@gmail.com>
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
@model BTCPayServer.Models.ServerViewModels.LogsViewModel
|
|
@{
|
|
ViewData.SetActivePage(ServerNavPages.Logs, "Logs");
|
|
}
|
|
|
|
<div class="sticky-header">
|
|
<h2 class="my-1">@ViewData["Title"]</h2>
|
|
</div>
|
|
<partial name="_StatusMessage" />
|
|
|
|
<ul class="list-unstyled">
|
|
@foreach (var file in Model.LogFiles)
|
|
{
|
|
<li>
|
|
<a asp-action="LogsView" asp-route-file="@file.Name">@file.Name</a>
|
|
</li>
|
|
}
|
|
</ul>
|
|
|
|
<nav aria-label="..." class="w-100">
|
|
<ul class="pagination float-start">
|
|
<li class="page-item @(Model.LogFileOffset == 0 ? "disabled" : null)">
|
|
<a class="page-link" asp-action="LogsView" asp-route-offset="@(Model.LogFileOffset - 5)">«</a>
|
|
</li>
|
|
<li class="page-item disabled">
|
|
<span class="page-link">Showing @Model.LogFileOffset - (@(Model.LogFileOffset+Model.LogFiles.Count)) of @Model.LogFileCount</span>
|
|
</li>
|
|
<li class="page-item @((Model.LogFileOffset + Model.LogFiles.Count) < Model.LogFileCount ? null : "disabled")">
|
|
<a class="page-link" asp-action="LogsView" asp-route-offset="@(Model.LogFileOffset + Model.LogFiles.Count)">»</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
@if (!string.IsNullOrEmpty(Model.Log))
|
|
{
|
|
<br>
|
|
<br>
|
|
<br>
|
|
|
|
<pre>
|
|
@Model.Log
|
|
</pre>
|
|
}
|
|
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|