Added file name to title, change table column spacing
This commit is contained in:
parent
3590e954a9
commit
7f168d17fa
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
@model FileHandleModel;
|
||||
|
||||
@{
|
||||
|
||||
ViewData["title"] = Model.FileName;
|
||||
}
|
||||
|
||||
<h2>File - @Model.FileName</h2>
|
||||
|
|
|
|||
Loading…
Reference in New Issue