yavsc/Yavsc/Views/Shared/DisplayTemplates/BookQuery.cshtml

45 lines
973 B
Plaintext

8 years ago
@model BookQuery
<dl class="dl-horizontal">
<dt>
8 years ago
@SR["EventDate"]
8 years ago
</dt>
<dd>
@Html.DisplayFor(model => model.EventDate)
</dd>
<dt>
8 years ago
@SR["Client"]
8 years ago
</dt>
<dd>
@Html.DisplayFor(model => model.Client.UserName)
</dd>
<dt>
8 years ago
@SR["Address"]
8 years ago
</dt>
<dd>
@Html.DisplayFor(model => model.Location.Address)
</dd>
<dt>
8 years ago
@SR["Provider"]
8 years ago
</dt>
<dd>
@Html.DisplayFor(model => model.PerformerProfile.Performer.UserName)
</dd>
<dt>
8 years ago
@SR["ValidationDate"]
8 years ago
</dt>
<dd>
@if (Model.ValidationDate==null) {
8 years ago
@SR["NonValidee"]
8 years ago
}
else {
@Html.DisplayFor(model => model.ValidationDate)
}
</dd>
</dl>