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

51 lines
1.3 KiB
Text
Raw Normal View History

2017-04-08 09:17:15 +02:00
@model HairPrestation
2017-04-09 03:40:35 +02:00
@{
string[] HairLen = new string[] {SR["HalfLong"],SR["Long"],SR["Short"]};
}
2017-05-05 23:37:07 +02:00
<div class="prestation">
2017-04-08 09:17:15 +02:00
<dl class="dl-horizontal">
<dd>
</dd>
<dt>
2017-04-09 03:40:35 +02:00
@Html.DisplayNameFor(model => model.Gender)
</dt>
<dd>@SR[Model.Gender.ToString()]</dd>
@if ((int)Model.Gender<1) {
<dt>
@Html.DisplayNameFor(model => model.Length)
2017-04-08 09:17:15 +02:00
</dt>
<dd>
2017-04-09 03:40:35 +02:00
@HairLen[(int)Model.Length]
</dd>}
2017-04-08 09:17:15 +02:00
<dt>
2017-04-09 03:40:35 +02:00
@Html.DisplayNameFor(model => model.Shampoo)
2017-04-08 09:17:15 +02:00
</dt>
<dd>
2017-04-09 03:40:35 +02:00
@Html.DisplayFor(model => model.Shampoo)
2017-04-08 09:17:15 +02:00
</dd>
<dt>
2017-04-09 03:40:35 +02:00
@Html.DisplayNameFor(model => model.Cut)
2017-04-08 09:17:15 +02:00
</dt>
<dd>
2017-04-09 03:40:35 +02:00
@Html.DisplayFor(model => model.Cut)
2017-04-08 09:17:15 +02:00
</dd>
<dt>
2017-04-09 03:40:35 +02:00
@Html.DisplayNameFor(model => model.Tech)
2017-04-08 09:17:15 +02:00
</dt>
<dd>
2017-04-09 03:40:35 +02:00
@SR[Model.Tech.ToString()]
2017-04-08 09:17:15 +02:00
</dd>
<dt>
2017-04-09 03:40:35 +02:00
@Html.DisplayNameFor(model => model.Dressing)
2017-04-08 09:17:15 +02:00
</dt>
<dd>
2017-04-09 03:40:35 +02:00
@Html.DisplayFor(model => model.Dressing)
2017-04-08 09:17:15 +02:00
</dd>
<dt>
2017-04-09 03:40:35 +02:00
@Html.DisplayNameFor(model => model.Cares)
2017-04-08 09:17:15 +02:00
</dt>
<dd>
2017-04-09 03:40:35 +02:00
@Html.DisplayFor(model => model.Cares)
2017-04-08 09:17:15 +02:00
</dd>
</dl>
2017-04-09 03:40:35 +02:00
</div>