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 { @section scripts {

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

@ -30,14 +30,6 @@
<span asp-validation-for="Body" class="text-danger" ></span> <span asp-validation-for="Body" class="text-danger" ></span>
</div> </div>
</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"> <div class="form-group">
<label asp-for="ReplyToAddress" class="col-md-2 control-label"></label> <label asp-for="ReplyToAddress" class="col-md-2 control-label"></label>
<div class="col-md-10"> <div class="col-md-10">

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

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

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

Loading…