dotnet-7.0
Paul Schneider 2 years ago
parent 4d9c285700
commit ae4de6bab7
6 changed files with 5 additions and 18 deletions

@ -1,5 +1,5 @@
@{
ViewData["Title"] = Page d'accueil;
ViewData["Title"] = "Page d'accueil";
}
@section scripts {

@ -1,5 +1,5 @@
@{
ViewData["Title"] = Todo (first)"];
ViewData["Title"] = "Todo (first)";
}
<h1>@ViewData["Title"]</h1>
<em>Linkmuse(trox)</em>

@ -30,14 +30,6 @@
<span asp-validation-for="Body" class="text-danger" ></span>
</div>
</div>
<div class="form-group">
<label asp-for="ManagerId" class="control-label col-md-2">Manager</label>
<div class="col-md-10">
<select asp-for="ManagerId" asp-items="@ViewBag.ManagerId" class="form-control" >
</select>
<span asp-validation-for="ManagerId" class="text-danger" ></span>
</div>
</div>
<div class="form-group">
<label asp-for="ReplyToAddress" class="col-md-2 control-label"></label>
<div class="col-md-10">

@ -1,6 +1,6 @@
@model ChangeUserNameViewModel
@{
ViewData["Title"] = Changer de nom d'utilisateur;
ViewData["Title"] = "Changer de nom d'utilisateur";
}
<h2>@ViewData["Title"].</h2>

@ -34,12 +34,7 @@
ValidationDate"]
</dt>
<dd>
@if (Model.ValidationDate==null) {
NonValidee"]
}
else {
@Html.DisplayFor(model => model.ValidationDate)
}
@((Model.ValidationDate==null)?"NonValidee":Html.DisplayFor(model => model.ValidationDate))
</dd>
</dl>

@ -4,7 +4,7 @@
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Post)
@Html.DisplayNameFor(model => model.BlogPost)
</dt>
<dd>
@Html.DisplayFor(model => model.Allowed)

Loading…