yavsc/Yavsc/Views/FrontOffice/Book.cshtml

14 lines
457 B
Text
Raw Normal View History

2016-05-17 18:22:18 +02:00
@model IEnumerable<PerformerProfile>
@{
ViewData["Title"] = "Book - " + (ViewBag.Activity?.Name ?? SR["Any"]);
}
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) {
await Html.RenderPartialAsync("_PerformerPartial", profile) ;
<form action="~/Command/Create" >
2016-07-27 11:09:49 +02:00
<input type="hidden" name="id" value="@profile.PerformerId" />
2016-08-01 01:43:32 +02:00
<input type="submit" value="@SR["Book "+ViewBag.Activity.Code]"/>
2016-05-17 18:22:18 +02:00
</form>
}