yavsc/Yavsc/Views/FrontOffice/HairCut.cshtml

21 lines
593 B
Plaintext

8 years ago
@model IEnumerable<PerformerProfile>
8 years ago
@{
8 years ago
ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["Any"]) ;
8 years ago
}
8 years ago
<h1>@ViewData["Title"]</h1>
8 years ago
<em>@ViewBag.Activity.Description</em>
8 years ago
@foreach (var profile in Model) {
<hr/>
@Html.DisplayFor(m=>profile)
<a asp-controller="HairCutCommand" asp-action="HairCut"
asp-route-activityCode="@ViewBag.Activity.Code"
asp-route-performerId="@profile.Performer.Id"
class="btn btn-success">
@SR["Proposer un rendez-vous à"] @profile.Performer.UserName
</a>
8 years ago
}