309 remainging

dotnet-7.0
Paul Schneider 2 years ago
parent e1812737bd
commit c81f974ade
9 changed files with 7 additions and 18 deletions

@ -84,7 +84,7 @@ $('span.field-validation-valid[data-valmsg-for="Content"]').html(
@Html.DisplayFor(model => model.DateCreated)
@Component.Invoke("Tagger",Model)
@Component.Invoke("Tagger",Model, null, null)
</div>
<div id="comments">

@ -219,7 +219,7 @@
<div class="form-group">
<label asp-for="ACL" class="col-md-2 control-label"></label>
<div class="col-md-10">
@Component.Invoke("CirclesControl",Model)
@Component.Invoke("CirclesControl", Model, null, null)
</div>
</div>

@ -195,7 +195,7 @@ to"]+" " ["+SR[ViewBag.Activity.Code]+"]"; }
<input type="submit" value=" Create "]" class="btn btn-default" />
</div>
</div>
@Html.HiddenFor(model=>model.ClientId)
@Html.HiddenFor("ClientId")
@Html.HiddenFor(model=>model.PerformerId)
@Html.HiddenFor(model=>model.ActivityCode)
</div>

@ -17,12 +17,6 @@
<dd>
@Html.DisplayFor(model => model.DeclarationDate)
</dd>
<dt>
@Html.DisplayNameFor(model => model.GCMRegistrationId)
</dt>
<dd>
@Html.DisplayFor(model => model.GCMRegistrationId)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Model)
</dt>

@ -16,12 +16,6 @@
<dd>
@Html.DisplayFor(model => model.DeclarationDate)
</dd>
<dt>
@Html.DisplayNameFor(model => model.GCMRegistrationId)
</dt>
<dd>
@Html.DisplayFor(model => model.GCMRegistrationId)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Model)
</dt>

@ -14,7 +14,7 @@
<dd>@Html.DisplayFor(m=>m.Declaration.Does)
@if (Model.NeedsSettings) {
<a asp-controller="@ViewBag.ProfileType.Name" asp-action="Index" class="btn btn-default">
@SR[Model.Declaration.Does.SettingsClassName]
@Model.Declaration.Does.SettingsClassName
@if (Model.Settings==null) {
<span class="badge">Non renseigné: Cliquez vite<br/> ici pour positionner les<br/>
paramêtres de cette activité</span>

@ -5,7 +5,7 @@
}
<ul>
@foreach (var instrument in Model.Instrumentation)
@foreach (var instrument in Model)
{
<li>@instrument.Name
<a asp-action="RemoveInstrument" asp-controller="Instrumentation" asp-action-id="Model.UserId" asp-action-name="@instrument.Name" />

@ -1,7 +1,7 @@
@model IEnumerable<Yavsc.ViewModels.FrontOffice.PerformerProfileViewModel>
@{
ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["Any"]) ;
ViewData["Title"] = ViewBag.Activity?.Name ?? "Any" ;
}
<h1>@ViewData["Title"]</h1>
<em>@ViewBag.Activity.Description</em>

@ -25,3 +25,4 @@
@using PayPal.PayPalAPIInterfaceService.Model;
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@inject IAuthorizationService AuthorizationService

Loading…