files tree made better.
This commit is contained in:
17
src/Yavsc/Views/FrontOffice/Profiles.cshtml
Normal file
17
src/Yavsc/Views/FrontOffice/Profiles.cshtml
Normal file
@ -0,0 +1,17 @@
|
||||
@model IEnumerable<PerformerProfileViewModel>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["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" >
|
||||
@SR["Proposer un rendez-vous à"] @profile.UserName
|
||||
</a>
|
||||
}
|
||||
|
Reference in New Issue
Block a user