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

45 lines
972 B
Text
Raw Normal View History

2017-02-27 19:28:32 +01:00
@model RdvQuery
2017-01-16 15:34:05 +01:00
<dl class="dl-horizontal">
<dt>
2017-01-20 14:21:01 +01:00
@SR["EventDate"]
2017-01-16 15:34:05 +01:00
</dt>
<dd>
@Html.DisplayFor(model => model.EventDate)
</dd>
<dt>
2017-01-20 14:21:01 +01:00
@SR["Client"]
2017-01-16 15:34:05 +01:00
</dt>
<dd>
@Html.DisplayFor(model => model.Client.UserName)
</dd>
<dt>
2017-01-20 14:21:01 +01:00
@SR["Address"]
2017-01-16 15:34:05 +01:00
</dt>
<dd>
@Html.DisplayFor(model => model.Location.Address)
</dd>
<dt>
2017-01-20 14:21:01 +01:00
@SR["Provider"]
2017-01-16 15:34:05 +01:00
</dt>
<dd>
@Html.DisplayFor(model => model.PerformerProfile.Performer.UserName)
</dd>
<dt>
2017-01-20 14:21:01 +01:00
@SR["ValidationDate"]
2017-01-16 15:34:05 +01:00
</dt>
<dd>
@if (Model.ValidationDate==null) {
2017-01-20 14:21:01 +01:00
@SR["NonValidee"]
2017-01-16 15:34:05 +01:00
}
else {
@Html.DisplayFor(model => model.ValidationDate)
}
</dd>
</dl>