files tree made better.
This commit is contained in:
parent
ffbf032480
commit
ccc91bbf19
1630 changed files with 18209 additions and 41860 deletions
0
src/Yavsc/Views/FrontOffice/BillAcquitment.cshtml
Normal file
0
src/Yavsc/Views/FrontOffice/BillAcquitment.cshtml
Normal file
0
src/Yavsc/Views/FrontOffice/BillValidation.cshtml
Normal file
0
src/Yavsc/Views/FrontOffice/BillValidation.cshtml
Normal file
0
src/Yavsc/Views/FrontOffice/EstimateProValidation.cshtml
Normal file
0
src/Yavsc/Views/FrontOffice/EstimateProValidation.cshtml
Normal file
20
src/Yavsc/Views/FrontOffice/HairCut.cshtml
Normal file
20
src/Yavsc/Views/FrontOffice/HairCut.cshtml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
@model IEnumerable<Yavsc.ViewModels.FrontOffice.PerformerProfileViewModel>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["Any"]) ;
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<em>@ViewBag.Activity.Description</em>
|
||||
|
||||
@foreach (var profile in Model) {
|
||||
<hr/>
|
||||
@Html.DisplayFor(m=>profile)
|
||||
<a asp-controller="HairCutCommand" asp-action="HairCut"
|
||||
asp-route-activityCode="@ViewBag.Activity.Code"
|
||||
asp-route-performerId="@profile.PerformerId"
|
||||
class="btn btn-success">
|
||||
@SR["Proposer un rendez-vous à"] @profile.UserName
|
||||
</a>
|
||||
|
||||
}
|
||||
|
||||
38
src/Yavsc/Views/FrontOffice/Index.cshtml
Normal file
38
src/Yavsc/Views/FrontOffice/Index.cshtml
Normal file
|
|
@ -0,0 +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>
|
||||
17
src/Yavsc/Views/FrontOffice/Profiles.cshtml
Normal file
17
src/Yavsc/Views/FrontOffice/Profiles.cshtml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
@model IEnumerable<PerformerProfileViewModel>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["Any"]) ;
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<em>@ViewBag.Activity.Description</em>
|
||||
|
||||
@foreach (var profile in Model) {
|
||||
<hr/>
|
||||
@Html.DisplayFor(m=>profile)
|
||||
<a class="btn btn-success" asp-controller="Command" asp-action="Create" asp-route-proId="@profile.PerformerId"
|
||||
asp-route-billingCode="Profiles" asp-route-activityCode="@ViewBag.Activity.Code" >
|
||||
@SR["Proposer un rendez-vous à"] @profile.UserName
|
||||
</a>
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue