WIP
parent
2a64f2dc84
commit
da08bc5368
@ -0,0 +1,45 @@
|
|||||||
|
@model BookQuery
|
||||||
|
|
||||||
|
<dl class="dl-horizontal">
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.EventDate)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@Html.DisplayFor(model => model.EventDate)
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.Client)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@Html.DisplayFor(model => model.Client.UserName)
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.Location.Address)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@Html.DisplayFor(model => model.Location.Address)
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.PerformerProfile)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@Html.DisplayFor(model => model.PerformerProfile.Performer.UserName)
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.ValidationDate)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@if (Model.ValidationDate==null) {
|
||||||
|
@SR["NotValidated"]
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
@Html.DisplayFor(model => model.ValidationDate)
|
||||||
|
}
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
</dl>
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
@model Estimate
|
||||||
|
<dl class="dl-horizontal">
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.Title)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@Html.DisplayFor(model => model.Title)
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.Description)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@Html.DisplayFor(model => model.Description)
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.Bill)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@foreach (var cl in Model.Bill) {
|
||||||
|
@await Html.PartialAsync("BillingLine", cl);
|
||||||
|
}
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
@await Component.InvokeAsync("Estimate",Model.Id)
|
||||||
Loading…
Reference in New Issue