19 lines
571 B
HTML
19 lines
571 B
HTML
<h1 ng-if="model.id" translate>Edit motion</h1>
|
|
<h1 ng-if="!model.id" translate>New motion</h1>
|
|
|
|
<uib-alert ng-show="alert.show" type="{{ alert.type }}" ng-click="alert={}" close="alert={}">
|
|
{{ alert.msg }}
|
|
</uib-alert>
|
|
|
|
<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>
|
|
Save
|
|
</button>
|
|
<button ng-click="closeThisDialog()" class="btn btn-default" translate>
|
|
Cancel
|
|
</button>
|
|
</formly-form>
|
|
</form>
|
|
|