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/>
|
2017-03-23 14:21:47 +01:00
|
|
|
@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
|
2017-03-23 14:21:47 +01:00
|
|
|
</a>
|
|
|
|
|
|
2017-03-01 10:11:20 +01:00
|
|
|
}
|
|
|
|
|
|