18 left
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user