Book query tracking

This commit is contained in:
2017-01-20 14:19:23 +01:00
parent e44f531ae6
commit e3fea63a3b
8 changed files with 1514 additions and 21 deletions

View File

@ -1,13 +1,13 @@
@model BookQuery
@{
ViewData["Title"] = "Details";
ViewData["Title"] = @SR["Details"];
}
<h2>Details</h2>
<h2>@ViewData["Title"]</h2>
<div>
<h4>Command</h4>
<h4>@SR["Command"]</h4>
<hr />
@Html.DisplayFor(m=>m)
</div>

View File

@ -12,22 +12,22 @@
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.CreationDate)
@SR["DateCreated"]
</th>
<th>
@Html.DisplayNameFor(model => model.EventDate)
@SR["EventDate"]
</th>
<th>
@Html.DisplayNameFor(model => model.Location)
@SR["Location"]
</th>
<th>
@Html.DisplayNameFor(model => model.Client)
@SR["Client"]
</th>
<th>
@Html.DisplayNameFor(model => model.PerformerProfile)
@SR["Performer"]
</th>
<th>
@Html.DisplayNameFor(model => model.ValidationDate)
@SR["ValidationDate"]
</th>
<th></th>
</tr>
@ -35,7 +35,7 @@
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.CreationDate)
@Html.DisplayFor(modelItem => item.DateCreated)
</td>
<td>
@Html.DisplayFor(modelItem => item.EventDate)