97 remaining
This commit is contained in:
parent
3eae4fb512
commit
49ca652549
43 changed files with 103 additions and 168 deletions
|
|
@ -22,11 +22,11 @@
|
|||
</dd>
|
||||
<dt>La facture
|
||||
</dt>
|
||||
<dd>@await Component.InvokeAsync("Bill", "Brush", Model, OutputFormat.Html, true)
|
||||
<dd>@await Component.InvokeAsync("Bill", Model)
|
||||
</dd>
|
||||
<dt>@Html.DisplayNameFor(m=>m.Regularisation)</dt>
|
||||
<dd>
|
||||
@Component.Invoke("PayPalButton", Model, "haircut", "HairCutCommand" )
|
||||
@await Component.InvokeAsync("PayPalButton", Model)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Gender)
|
||||
</dt>
|
||||
<dd>@SR[Model.Gender.ToString()]</dd>
|
||||
<dd>@Model.Gender.ToString()</dd>
|
||||
@if ((int)Model.Gender<1) {
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Length)
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
@Html.DisplayNameFor(model => model.Tech)
|
||||
</dt>
|
||||
<dd>
|
||||
@SR[Model.Tech.ToString()]
|
||||
@Model.Tech.ToString()
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Dressing)
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
@using Yavsc.ViewModels.Account
|
||||
@model SignInViewModel
|
||||
@{
|
||||
ViewData["Title"] = SR["Log in"];
|
||||
ViewData["Title"] = "Log in";
|
||||
}
|
||||
|
||||
<div class="jumbotron">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue