21 lines
620 B
Plaintext
21 lines
620 B
Plaintext
|
8 years ago
|
@model IEnumerable<Yavsc.ViewModels.FrontOffice.PerformerProfileViewModel>
|
||
|
9 years ago
|
|
||
|
|
@{
|
||
|
9 years ago
|
ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["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/>
|
||
|
9 years ago
|
@Html.DisplayFor(m=>profile)
|
||
|
|
<a asp-controller="HairCutCommand" asp-action="HairCut"
|
||
|
|
asp-route-activityCode="@ViewBag.Activity.Code"
|
||
|
8 years ago
|
asp-route-performerId="@profile.PerformerId"
|
||
|
9 years ago
|
class="btn btn-success">
|
||
|
8 years ago
|
@SR["Proposer un rendez-vous à"] @profile.UserName
|
||
|
9 years ago
|
</a>
|
||
|
|
|
||
|
9 years ago
|
}
|
||
|
|
|