This commit is contained in:
Paul Schneider 2016-08-01 01:43:32 +02:00
commit 827a80df99
21 changed files with 10 additions and 2423 deletions

View file

@ -115,14 +115,14 @@ $(document).ready(function(){
@Html.ValidationSummary()
<fieldset>
<legend><label for="EventDate" class="col-md-2 control-label" >
@SR["EventDate"]
@SR["Event date"]
</label></legend>
<div class="col-md-10">
<div class="container">
<div class="row">
<div class='col-sm-6'>
<div class='input-group date' id='datetimepicker2'>
<input type='text' class="form-control" name="EventDate" id="EventDate"/>
<input class="form-control" name="EventDate"/>
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>

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>
}