This commit is contained in:
2016-08-01 01:43:32 +02:00
parent e8a0041c5e
commit d6465d0de5
21 changed files with 10 additions and 2423 deletions

View File

@ -3,12 +3,12 @@
@{
ViewData["Title"] = "Book - " + (ViewBag.Activity?.Name ?? SR["Any"]);
}
<em>@ViewBag.Activity?.Description</em>
<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"]"/>
<input type="submit" value="@SR["Book "+ViewBag.Activity.Code]"/>
</form>
}