instrumentation
This commit is contained in:
parent
214d2d5f36
commit
08e96dfcfe
7 changed files with 115 additions and 2 deletions
|
|
@ -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>
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue