displaying parts
parent
e264cb7f43
commit
a6fa4f618b
@ -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…
Reference in New Issue