Start to implement a FrontOffice index
This commit is contained in:
parent
02d0897cf1
commit
da57f627fb
4 changed files with 68 additions and 5 deletions
|
|
@ -1,7 +1,38 @@
|
|||
|
||||
@model Yavsc.ViewModels.FrontOffice.FrontOfficeIndexViewModel
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Front office";
|
||||
}
|
||||
|
||||
<h2>Index</h2>
|
||||
<dl class="dl-horizontal">
|
||||
<dt>@SR["EstimateToProduce"]
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.EstimateToProduceCount)
|
||||
</dd>
|
||||
|
||||
<dt>@SR["EstimateToSignAsPro"]
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.EstimateToSignAsProCount)
|
||||
</dd>
|
||||
|
||||
<dt>@SR["EstimateToSignAsCli"]
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.EstimateToSignAsCliCount)
|
||||
</dd>
|
||||
|
||||
<dt>@SR["BillToSignAsPro"]
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.BillToSignAsProCount)
|
||||
</dd>
|
||||
|
||||
<dt>@SR["BillToSignAsCli"]
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.BillToSignAsCliCount)
|
||||
</dd>
|
||||
|
||||
<dt>@SR["PayementsDone"]
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.NewPayementsCount)
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue