Added file name to title, change table column spacing

This commit is contained in:
michael-bailey 2025-03-19 11:07:16 +00:00
parent 3590e954a9
commit 7f168d17fa
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@
<tr>
<th scope="col">Name</th>
<th scope="col">Block Count</th>
<th scope="col">Links</th>
<th scope="col" class="col-4">Links</th>
</tr>
</thead>
<tbody>
@ -50,7 +50,7 @@
<tr>
<th scope="row" class="align-middle">@file.FileName</th>
<th scope="row" class="align-middle">@file.BlockCount</th>
<th scope="row" class="align-middle">
<th scope="row" class="align-middle col-4">
<a
asp-controller="Files" asp-action="Index" asp-route-id="@file.Id"
class="btn btn-primary me-2">View...</a>

View File

@ -1,7 +1,7 @@
@model FileHandleModel;
@{
ViewData["title"] = Model.FileName;
}
<h2>File - @Model.FileName</h2>