2015-04-05 22:16:11 +02:00
|
|
|
<!-- edit details of an Event -->
|
2015-03-22 17:17:51 +01:00
|
|
|
<div class="container">
|
2015-05-05 21:48:25 +02:00
|
|
|
<div class="panel panel-primary table-striped top5">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h1>
|
2016-06-26 13:48:01 +02:00
|
|
|
<button ng-if="event._id && hasPermission('persons|read')" ng-click="$state.go('event.tickets', {id: event._id})" class="btn btn-success">
|
2016-06-19 16:58:38 +02:00
|
|
|
<span class="fa fa-ticket vcenter"></span>
|
|
|
|
{{'Tickets' | translate}}
|
2015-05-05 21:48:25 +02:00
|
|
|
</button>
|
2016-06-26 13:48:01 +02:00
|
|
|
<button ng-if="event._id && hasPermission('event:tickets-all|create')" ng-click="$state.go('event.ticket.new', {id: event._id})" class="btn btn-success">
|
|
|
|
<span class="fa fa-user-plus vcenter"></span>
|
|
|
|
{{'Register' | translate}}
|
|
|
|
</button>
|
|
|
|
<span ng-if="hasPermission('event|create') && !event.title">{{'New event' | translate}}</span>{{event.title}}
|
2015-05-05 21:48:25 +02:00
|
|
|
</h1>
|
2015-04-05 20:12:54 +02:00
|
|
|
</div>
|
2015-05-05 21:48:25 +02:00
|
|
|
<div class="panel-body">
|
|
|
|
<form name="eventForm" ng-model="eventdetails" ng-submit="save()">
|
2016-06-24 23:11:57 +02:00
|
|
|
<fieldset ng-disabled="eventFormDisabled">
|
|
|
|
<div ng-if="!eventFormDisabled" ng-class="{clearfix: true, alert: true, 'alert-success': !eventForm.$dirty, 'alert-danger': eventForm.$dirty}">
|
|
|
|
<button type="button" class="btn btn-default pull-right" ng-click="save($event)" ng-disabled="!eventForm.$dirty">
|
|
|
|
<span class="fa fa-floppy-o vcenter"></span>
|
|
|
|
{{'save' | translate}}
|
|
|
|
</button>
|
|
|
|
</div>
|
2015-03-21 15:33:17 +01:00
|
|
|
|
2016-06-24 23:11:57 +02:00
|
|
|
<div class="input-group input-group-lg">
|
|
|
|
<span class="input-group-addon min100">{{'Title' | translate}}</span>
|
|
|
|
<input type="text" class="form-control" placeholder="{{'Title' | translate}}" ng-model="event.title" ng-required="1">
|
2015-05-05 21:48:25 +02:00
|
|
|
</div>
|
2016-06-24 23:11:57 +02:00
|
|
|
<div class="input-group input-group-lg top5">
|
|
|
|
<span class="input-group-addon min100">{{'Tagline' | translate}}</span>
|
|
|
|
<input type="text" class="form-control" placeholder="{{'Tagline' | translate}}" ng-model="event.tagline">
|
|
|
|
</div>
|
|
|
|
<div class="input-group input-group-lg top5">
|
|
|
|
<span class="input-group-addon min100">{{'Short summary' | translate}}</span>
|
|
|
|
<input type="text" class="form-control" placeholder="{{'Short summary' | translate}}" ng-model="event.summary">
|
|
|
|
</div>
|
|
|
|
<div class="input-group top5">
|
|
|
|
<span class="input-group-addon min100">{{'Long description' | translate}}</span>
|
|
|
|
<textarea class="form-control" placeholder="{{'Long description' | translate}}" ng-model="event.description" rows="5"></textarea>
|
2015-05-05 21:48:25 +02:00
|
|
|
</div>
|
2015-03-15 23:05:59 +01:00
|
|
|
|
2016-06-24 23:11:57 +02:00
|
|
|
<div class="input-group top5 well form-horizontal" ng-controller="DatetimePickerCtrl">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="begin-date" class="col-sm-3 control-label">{{'begin date:' | translate}}</label>
|
|
|
|
<div id="begin-date" class="input-group col-sm-9">
|
|
|
|
<input type="text" class="form-control" datepicker-popup="dd-MMMM-yyyy" ng-model="event['begin-date']" is-open="opened" ng-required="true" />
|
|
|
|
<span class="input-group-btn">
|
|
|
|
<button type="button" class="btn btn-default" ng-click="open($event)"><i class="fa fa-calendar"></i></button>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="begin-time" class="col-sm-3 control-label">{{'begin time:' | translate}}</label>
|
|
|
|
<timepicker id="begin-time" class="input-group" ng-model="event['begin-time']" show-meridian="false"></timepicker>
|
2015-05-05 21:48:25 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-24 23:11:57 +02:00
|
|
|
|
|
|
|
<div class="input-group top5 well form-horizontal" ng-controller="DatetimePickerCtrl">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="end-date" class="col-sm-3 control-label">{{'End date:' | translate}}</label>
|
|
|
|
<div id="end-date" class="input-group col-sm-9">
|
|
|
|
<input type="text" class="form-control" datepicker-popup="dd-MMMM-yyyy" ng-model="event['end-date']" is-open="opened" ng-required="true" />
|
|
|
|
<span class="input-group-btn">
|
|
|
|
<button type="button" class="btn btn-default" ng-click="open($event)"><i class="fa fa-calendar"></i></button>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="end-time" class="col-sm-3 control-label">{{'End time:' | translate}}</label>
|
|
|
|
<timepicker id="end-time" class="input-group" ng-model="event['end-time']" show-meridian="false"></timepicker>
|
|
|
|
</div>
|
2015-05-05 21:48:25 +02:00
|
|
|
</div>
|
2015-03-28 17:42:27 +01:00
|
|
|
|
2016-06-24 23:11:57 +02:00
|
|
|
<div class="input-group input-group-lg top5">
|
|
|
|
<span class="input-group-addon min100">{{'Where' | translate}}</span>
|
|
|
|
<input type="text" class="form-control" placeholder="{{'Where' | translate}}" ng-model="event.where">
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
2016-06-18 20:01:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
<label></label>
|
2015-05-05 21:48:25 +02:00
|
|
|
<input type="submit" class="outside-screen" />
|
2016-06-24 23:11:57 +02:00
|
|
|
<div ng-if="!eventFormDisabled" ng-class="{clearfix: true, alert: true, 'alert-success': !eventForm.$dirty, 'alert-danger': eventForm.$dirty}">
|
2016-06-18 20:01:17 +02:00
|
|
|
<button type="button" class="btn btn-default pull-right" ng-click="save($event)" ng-disabled="!eventForm.$dirty">
|
|
|
|
<span class="fa fa-floppy-o vcenter"></span>
|
|
|
|
{{'save' | translate}}
|
|
|
|
</button>
|
|
|
|
</div>
|
2015-05-05 21:48:25 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-19 15:12:40 +02:00
|
|
|
|
2016-06-24 23:11:57 +02:00
|
|
|
<div class="panel panel-primary top10" ng-if="!eventFormDisabled">
|
2016-06-19 15:12:40 +02:00
|
|
|
<div class="panel-heading">
|
|
|
|
<h1>{{'Registration form' | translate}}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<eda-step-way-easy-form-gen eda-easy-form-generator-model="event.formSchema" eda-save-form-event="saveForm(edaEasyFormGeneratorModel)"></eda-step-way-easy-form-gen>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-03-21 13:21:47 +01:00
|
|
|
</div>
|