97 remaining

This commit is contained in:
Paul Schneider
2023-03-20 19:38:50 +00:00
parent c81f974ade
commit 64febe48b0
43 changed files with 103 additions and 168 deletions

View File

@ -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>

View File

@ -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)

View File

@ -3,7 +3,7 @@
@using Yavsc.ViewModels.Account
@model SignInViewModel
@{
ViewData["Title"] = SR["Log in"];
ViewData["Title"] = "Log in";
}
<div class="jumbotron">