Fixe l'affichage du devis
This commit is contained in:
parent
7d0625f44d
commit
1b2b2ba612
4 changed files with 48 additions and 3 deletions
33
Yavsc/Views/Shared/BillingLine.cshtml
Normal file
33
Yavsc/Views/Shared/BillingLine.cshtml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
@model Yavsc.Models.Billing.CommandLine
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Id)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Id)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Description)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Description)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Count)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Count)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.UnitaryCost)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.UnitaryCost)
|
||||
</dd>
|
||||
|
||||
</dl>
|
||||
Loading…
Add table
Add a link
Reference in a new issue