instrumentation

This commit is contained in:
Paul Schneider 2019-07-22 17:25:12 +02:00
commit 08e96dfcfe
7 changed files with 115 additions and 2 deletions

View file

@ -0,0 +1,20 @@
@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>
}