yavsc/Yavsc/Views/FrontOffice/Book.cshtml

16 lines
472 B
Plaintext

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