yavsc/src/Yavsc/Views/FrontOffice/HairCut.cshtml

21 lines
606 B
Plaintext

@model IEnumerable<Yavsc.ViewModels.FrontOffice.PerformerProfileViewModel>
9 years ago
@{
3 years ago
ViewData["Title"] = ViewBag.Activity?.Name ?? "Any" ;
9 years ago
}
9 years ago
<h1>@ViewData["Title"]</h1>
9 years ago
<em>@ViewBag.Activity.Description</em>
9 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.PerformerId"
class="btn btn-success">
Proposer un rendez-vous à @profile.UserName
</a>
9 years ago
}