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

32 lines
827 B
Plaintext

8 years ago
@model Estimate
8 years ago
8 years ago
<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>
8 years ago
<label>Signature fournisseur :
7 years ago
<img src="/api/pdfbill/prosign/@Model.Id" alt="" style="height:100px; background-color: white;">
8 years ago
</label>
8 years ago
@await Component.InvokeAsync("Estimate",Model.Id)