16f1ad5731
- better integration of tinymce in bower and gulp - Improve support for html tags in reportlab's motion pdf. - Now paste from word works without problems (That was the main reason of switching to tinymce: The data loss problem with MS Word is still unfixed in CKEditor, see https://dev.ckeditor.com/ticket/13174) - The editor is now used for customslides (text), motions (text, reason) and users (about). - Use mediafile image list for tinymce. - Use own repository for tinymce-i18n: OpenSlides/tinymce-i18n
18 lines
570 B
HTML
18 lines
570 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>
|