yavsc/Yavsc/Views/Shared/DisplayTemplates/HairPrestation.cshtml

51 lines
1.3 KiB
Plaintext

8 years ago
@model HairPrestation
@{
string[] HairLen = new string[] {SR["HalfLong"],SR["Long"],SR["Short"]};
}
<div class="prestation">
8 years ago
<dl class="dl-horizontal">
<dd>
</dd>
<dt>
@Html.DisplayNameFor(model => model.Gender)
</dt>
<dd>@SR[Model.Gender.ToString()]</dd>
@if ((int)Model.Gender<1) {
<dt>
@Html.DisplayNameFor(model => model.Length)
8 years ago
</dt>
<dd>
@HairLen[(int)Model.Length]
</dd>}
8 years ago
<dt>
@Html.DisplayNameFor(model => model.Shampoo)
8 years ago
</dt>
<dd>
@Html.DisplayFor(model => model.Shampoo)
8 years ago
</dd>
<dt>
@Html.DisplayNameFor(model => model.Cut)
8 years ago
</dt>
<dd>
@Html.DisplayFor(model => model.Cut)
8 years ago
</dd>
<dt>
@Html.DisplayNameFor(model => model.Tech)
8 years ago
</dt>
<dd>
@SR[Model.Tech.ToString()]
8 years ago
</dd>
<dt>
@Html.DisplayNameFor(model => model.Dressing)
8 years ago
</dt>
<dd>
@Html.DisplayFor(model => model.Dressing)
8 years ago
</dd>
<dt>
@Html.DisplayNameFor(model => model.Cares)
8 years ago
</dt>
<dd>
@Html.DisplayFor(model => model.Cares)
8 years ago
</dd>
</dl>
</div>