instruments & global positioning
This commit is contained in:
parent
c9fa779f16
commit
2878f6b8db
27 changed files with 6633 additions and 125 deletions
|
|
@ -0,0 +1,26 @@
|
|||
@model Yavsc.Models.Musical.Profiles.FormationSettings
|
||||
|
||||
|
||||
@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">
|
||||
<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