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

20 lines
606 B
Text
Raw Normal View History

2018-06-15 15:44:21 +02:00
@model IEnumerable<Yavsc.ViewModels.FrontOffice.PerformerProfileViewModel>
2017-02-27 19:28:32 +01:00
@{
2023-03-20 18:24:10 +00:00
ViewData["Title"] = ViewBag.Activity?.Name ?? "Any" ;
2017-02-27 19:28:32 +01:00
}
2017-03-01 10:11:20 +01:00
<h1>@ViewData["Title"]</h1>
2017-02-27 19:28:32 +01:00
<em>@ViewBag.Activity.Description</em>
2017-03-01 10:11:20 +01:00
@foreach (var profile in Model) {
<hr/>
@Html.DisplayFor(m=>profile)
<a asp-controller="HairCutCommand" asp-action="HairCut"
asp-route-activityCode="@ViewBag.Activity.Code"
2018-06-15 15:44:21 +02:00
asp-route-performerId="@profile.PerformerId"
2017-04-01 02:14:10 +02:00
class="btn btn-success">
2025-08-19 15:40:16 +01:00
Proposer un rendez-vous à @profile.UserName
</a>
2017-03-01 10:11:20 +01:00
}