yavsc/Yavsc/Views/FrontOffice/Book.cshtml

15 lines
449 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.PerfomerId" />
<input type="submit" value="@SR["Book this performer"]"/>
</form>
}