Files
yavsc/src/Yavsc/Views/FrontOffice/Yavsc.Models.Musical.Profiles.Instrumentation.cshtml
2019-07-22 17:26:28 +02:00

20 lines
400 B
Plaintext

@model Yavsc.Models.Musical.Profiles.Instrumentation
@if (Model == null) {
<p>@SR["NoInstrument"]</p>
}
@if (Model != null) {
<fieldset>
<legend>@SR["Instrumentation"]</legend>
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Tool)
</dt>
<dd>
@Html.DisplayFor(model => model.Tool)
</dd>
</dl>
</fieldset>
}