Book query tracking
This commit is contained in:
parent
7e8aa7d81d
commit
32ca008d20
8 changed files with 1514 additions and 21 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue