yavsc/src/Yavsc/Views/FrontOffice/Profiles.cshtml
Paul Schneider 49ca652549 97 remaining
2023-03-20 19:38:50 +00:00

17 lines
524 B
Text

@model IEnumerable<PerformerProfileViewModel>
@{
ViewData["Title"] = (ViewBag.Activity?.Name ?? "Any") ;
}
<h1>@ViewData["Title"]</h1>
<em>@ViewBag.Activity.Description</em>
@foreach (var profile in Model) {
<hr/>
@Html.DisplayFor(m=>profile)
<a class="btn btn-success" asp-controller="Command" asp-action="Create" asp-route-proId="@profile.PerformerId"
asp-route-billingCode="Profiles" asp-route-activityCode="@ViewBag.Activity.Code" >
Proposer un rendez-vous à"] @profile.UserName
</a>
}