yavsc/Yavsc/Views/FrontOffice/Profiles.cshtml

17 lines
534 B
Text
Raw Normal View History

2017-01-20 00:51:02 +01:00
@model IEnumerable<PerformerProfile>
2016-05-17 18:22:18 +02:00
@{
2017-04-01 02:35:24 +02:00
ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["Any"]) ;
2016-05-17 18:22:18 +02:00
}
2017-02-28 14:01:24 +01:00
<h1>@ViewData["Title"]</h1>
2016-08-01 01:43:32 +02:00
<em>@ViewBag.Activity.Description</em>
2016-05-17 18:22:18 +02:00
@foreach (var profile in Model) {
<hr/>
2017-03-02 20:25:49 +01:00
@Html.DisplayFor(m=>profile)
2018-02-25 03:33:54 +01:00
<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.Performer.UserName
</a>
2016-05-17 18:22:18 +02:00
}
2017-01-20 00:51:02 +01:00