ed72a90306
motion detail: - added progres bar for motionpoll - added support/unsupport function - show log motion list: - added state filter - added css animations for enter/leave motion form: - use angular-formly (instead of old ng-fab-forms with no angular 1.4.x support) general: - Workflow states use new field 'css_class' (instead of unused 'icon'). Added migration file. - added 'allowed_actions' to rest api for each motion (by Norman) - updated all JavaScript dependencies (bower.json)
22 lines
645 B
HTML
22 lines
645 B
HTML
<h1 ng-if="motion.id" translate>Edit motion</h1>
|
|
<h1 ng-if="!motion.id" translate>New motion</h1>
|
|
|
|
<div id="submenu">
|
|
<a ui-sref="motions.motion.list" class="btn btn-sm btn-default">
|
|
<i class="fa fa-angle-double-left fa-lg"></i>
|
|
<translate>Back to overview</translate>
|
|
</a>
|
|
</div>
|
|
|
|
<form name="motionForm" ng-submit="save(model)">
|
|
<formly-form model="model" fields="formFields">
|
|
<button type="submit" ng-disabled="motionForm.$invalid" class="btn btn-primary" translate>
|
|
Submit
|
|
</button>
|
|
<button ui-sref="motions.motion.list" class="btn btn-default" translate>
|
|
Cancel
|
|
</button>
|
|
</formly-form>
|
|
</form>
|
|
|