Files
dss.web/client/app/views/schedule/eventDialog.html
Fergal Moran d2c529bafe Screw you git!
2015-12-01 19:50:20 +00:00

14 lines
675 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="modal-header">
<button type="button" data-dismiss="modal" aria-hidden="true" ng-click="doClose(false)" class="close">×</button>
<h4 class="modal-title">Add new show</h4>
</div>
<div class="modal-body">
<dss-scheduler></dss-scheduler>
</div>
<div class="modal-footer">
<button ng-show="editing" type="button" ng-click="doDelete()" class="btn btn-sm btn-danger pull-left">Delete</button>
<button type="button" ng-click="doClose(false)" class="btn btn-sm btn-default">Cancel</button>
<button type="button" ng-click="doClose(true)" class="btn btn-sm btn-primary"
ng-bind="editing ? 'Update show' : 'Create show'"></button>
</div>