Files
yavsc/src/Yavsc/Views/FrontOffice/Profiles.cshtml
Paul Schneider d691501d42
Some checks failed
Dotnet build and test / log-the-inputs (push) Failing after 2s
Dotnet build and test / build (push) Failing after 2s
Client viewa restored
2025-08-19 15:40:31 +01:00

18 lines
522 B
Plaintext

@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>
}