Files
yavsc/Yavsc/Views/FrontOffice/Book.cshtml
2016-07-27 11:09:49 +02:00

15 lines
450 B
Plaintext

@model IEnumerable<PerformerProfile>
@{
ViewData["Title"] = "Book - " + (ViewBag.Activity?.Name ?? SR["Any"]);
}
<em>@ViewBag.Activity?.Description</em>
@foreach (var profile in Model) {
await Html.RenderPartialAsync("_PerformerPartial", profile) ;
<form action="~/Command/Create" >
<input type="hidden" name="id" value="@profile.PerformerId" />
<input type="submit" value="@SR["Book this performer"]"/>
</form>
}