displaying parts
This commit is contained in:
parent
071f0260e3
commit
15a07a8400
5 changed files with 14 additions and 27 deletions
|
|
@ -7,7 +7,6 @@ namespace Yavsc.ApiControllers
|
||||||
{
|
{
|
||||||
public DjProfileApiController(ApplicationDbContext context) : base(context)
|
public DjProfileApiController(ApplicationDbContext context) : base(context)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -785,4 +785,5 @@ Thanks.
|
||||||
{0} - {2} <https://{3}></value>
|
{0} - {2} <https://{3}></value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Instrumentation"><value>Instrumentation</value></data>
|
<data name="Instrumentation"><value>Instrumentation</value></data>
|
||||||
|
<data name="Partenariat"><value>Co-working</value></data>
|
||||||
</root>
|
</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="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="Kid"><value>criança</value></data>
|
||||||
<data name="Mech"><value>Meches</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>
|
</root>
|
||||||
|
|
|
||||||
|
|
@ -503,5 +503,5 @@ Facture réglée: {5}</value></data>
|
||||||
<data name="Fire"><value>Licencier</value></data>
|
<data name="Fire"><value>Licencier</value></data>
|
||||||
<data name="LiveFlow"><value>Flux live</value></data>
|
<data name="LiveFlow"><value>Flux live</value></data>
|
||||||
<data name="Instrumentation"><value>Instrumentation</value></data>
|
<data name="Instrumentation"><value>Instrumentation</value></data>
|
||||||
|
<data name="Partenariat"><value>Partenariat</value></data>
|
||||||
</root>
|
</root>
|
||||||
|
|
|
||||||
|
|
@ -1,26 +1,13 @@
|
||||||
@model Yavsc.Models.Musical.Profiles.FormationSettings
|
@model Yavsc.Models.Workflow.Profiles.FormationSettings
|
||||||
|
@if (Model != null && Model.CoWorking != null) {
|
||||||
|
|
||||||
@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)
|
|
||||||
}
|
|
||||||
<dl class="dl-horizontal">
|
<dl class="dl-horizontal">
|
||||||
<dt>
|
<dt>@SR["Partenariat"]</dt>
|
||||||
@Html.DisplayNameFor(model => model.Tool)
|
<dd>@Model.DisplayName</dd>
|
||||||
</dt>
|
<dt></dt>
|
||||||
<dd>
|
<dd><ul>
|
||||||
@Html.DisplayFor(model => model.Tool)
|
@foreach(var memb in Model.CoWorking) {
|
||||||
</dd>
|
<li>@Html.Display("PerformerProfile","", "", memb.Performer)</li>
|
||||||
|
}
|
||||||
|
</ul></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue