Add log buttons on details pages for Vehicle and User
This commit is contained in:
@@ -45,8 +45,6 @@ namespace MileageTraker.Web.Controllers
|
||||
orderby log.Created descending
|
||||
select log).ToList();
|
||||
|
||||
if (!filteredLogs.Any())
|
||||
return View("Empty");
|
||||
|
||||
var viewModel = new LogResultsViewModel(filteredLogs, query, CustomExtensions.YearMonthList(validLogYearMonths));
|
||||
|
||||
|
||||
@@ -89,3 +89,9 @@
|
||||
numericLinksCount: 20
|
||||
)
|
||||
</div>
|
||||
@if (!Model.Logs.Any())
|
||||
{
|
||||
<div>
|
||||
No results.
|
||||
</div>
|
||||
}
|
||||
@@ -113,4 +113,5 @@
|
||||
{
|
||||
@Html.ActionLink("Unlock", "UnlockUser", new {id = Model.UserId}, new {@class = "btn"})
|
||||
}
|
||||
@Html.ActionLink("Logs", "Index", "Log", new { EmployeeName = Model.FullName}, new { @class = "btn" })
|
||||
</div>
|
||||
|
||||
@@ -20,4 +20,5 @@
|
||||
|
||||
<div class="center-content btn-toolbar">
|
||||
@Html.ActionLink("Edit", "Edit", new { id = Model.VehicleId }, new { @class = "btn" })
|
||||
@Html.ActionLink("Logs", "Index", "Log", new { Model.VehicleId}, new { @class = "btn" })
|
||||
</div>
|
||||
Reference in New Issue
Block a user