displaying parts
This commit is contained in:
@ -7,7 +7,6 @@ namespace Yavsc.ApiControllers
|
||||
{
|
||||
public DjProfileApiController(ApplicationDbContext context) : base(context)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -785,4 +785,5 @@ Thanks.
|
||||
{0} - {2} <https://{3}></value>
|
||||
</data>
|
||||
<data name="Instrumentation"><value>Instrumentation</value></data>
|
||||
<data name="Partenariat"><value>Co-working</value></data>
|
||||
</root>
|
||||
|
@ -483,6 +483,6 @@ Conjunto de faturas: {5}</value></data>
|
||||
<data name="HairCutQueryValidation"><value>Um pedido (de {0}) em cabeleireiro em casa acaba de ser validado</value></data>
|
||||
<data name="Kid"><value>criança</value></data>
|
||||
<data name="Mech"><value>Meches</value></data>
|
||||
<data name="Instrumentation"><value>Instrumentação</value></data>
|
||||
|
||||
<data name="Instrumentation"><value>Instrumentação</value></data>
|
||||
<data name="Partenariat"><value>Parceria</value></data>
|
||||
</root>
|
||||
|
@ -503,5 +503,5 @@ Facture réglée: {5}</value></data>
|
||||
<data name="Fire"><value>Licencier</value></data>
|
||||
<data name="LiveFlow"><value>Flux live</value></data>
|
||||
<data name="Instrumentation"><value>Instrumentation</value></data>
|
||||
|
||||
<data name="Partenariat"><value>Partenariat</value></data>
|
||||
</root>
|
||||
|
@ -1,26 +1,13 @@
|
||||
@model Yavsc.Models.Musical.Profiles.FormationSettings
|
||||
|
||||
|
||||
@if (Model == null) {
|
||||
<p>@SR["ENOFORMATIONSETTINGS"]</p>
|
||||
}
|
||||
@if (Model != null) {
|
||||
<fieldset>
|
||||
<legend>@SR["Formation"] @Model.DisplayName</legend>
|
||||
<p>@Model.Summary</p>
|
||||
|
||||
<h2>
|
||||
|
||||
@foreach(var inst in Model.Instruments) {
|
||||
@Html.DisplayNameFor(model => model.Tool)
|
||||
}
|
||||
@model Yavsc.Models.Workflow.Profiles.FormationSettings
|
||||
@if (Model != null && Model.CoWorking != null) {
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Tool)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Tool)
|
||||
</dd>
|
||||
<dt>@SR["Partenariat"]</dt>
|
||||
<dd>@Model.DisplayName</dd>
|
||||
<dt></dt>
|
||||
<dd><ul>
|
||||
@foreach(var memb in Model.CoWorking) {
|
||||
<li>@Html.Display("PerformerProfile","", "", memb.Performer)</li>
|
||||
}
|
||||
</ul></dd>
|
||||
</dl>
|
||||
</fieldset>
|
||||
}
|
||||
|
Reference in New Issue
Block a user