Added global config for motion preamble.
This commit is contained in:
parent
5cc820d6d2
commit
7772f60bd4
@ -37,6 +37,7 @@ Motions:
|
|||||||
- Added blocks for motions which can set as agenda item.
|
- Added blocks for motions which can set as agenda item.
|
||||||
Set states for multiple motions of a motion block by following
|
Set states for multiple motions of a motion block by following
|
||||||
the recommendations of each motion.
|
the recommendations of each motion.
|
||||||
|
- Used global config variable for preamble.
|
||||||
|
|
||||||
Users:
|
Users:
|
||||||
- Added field is_committee and new default group Committees.
|
- Added field is_committee and new default group Committees.
|
||||||
|
@ -83,6 +83,7 @@ angular.module('OpenSlidesApp.motions.docx', [])
|
|||||||
signature_translation: signature_translation,
|
signature_translation: signature_translation,
|
||||||
status_translation: status_translation,
|
status_translation: status_translation,
|
||||||
status: motion.getStateName(),
|
status: motion.getStateName(),
|
||||||
|
preamble: gettextCatalog.getString(Config.get('motions_preamble').value),
|
||||||
text: html2docx(motion.getText()),
|
text: html2docx(motion.getText()),
|
||||||
reason_translation: motion.getReason().length === 0 ? '' : reason_translation,
|
reason_translation: motion.getReason().length === 0 ? '' : reason_translation,
|
||||||
reason: html2docx(motion.getReason()),
|
reason: html2docx(motion.getReason()),
|
||||||
|
@ -248,6 +248,14 @@ angular.module('OpenSlidesApp.motions.pdf', ['OpenSlidesApp.core.pdf'])
|
|||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// motion preamble
|
||||||
|
var motionPreamble = function () {
|
||||||
|
return {
|
||||||
|
text: Config.translate(Config.get('motions_preamble').value),
|
||||||
|
style: 'textItem',
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
// motion text (with line-numbers)
|
// motion text (with line-numbers)
|
||||||
var motionText = function() {
|
var motionText = function() {
|
||||||
@ -299,6 +307,7 @@ angular.module('OpenSlidesApp.motions.pdf', ['OpenSlidesApp.core.pdf'])
|
|||||||
subtitle,
|
subtitle,
|
||||||
metaTable(),
|
metaTable(),
|
||||||
motionTitle(),
|
motionTitle(),
|
||||||
|
motionPreamble(),
|
||||||
motionText(),
|
motionText(),
|
||||||
];
|
];
|
||||||
if (motionReason()) {
|
if (motionReason()) {
|
||||||
|
@ -1396,8 +1396,6 @@ angular.module('OpenSlidesApp.motions.site', [
|
|||||||
var isAmendment = $scope.$parent.motion && $scope.$parent.motion.id;
|
var isAmendment = $scope.$parent.motion && $scope.$parent.motion.id;
|
||||||
|
|
||||||
// Set default values for create form
|
// Set default values for create form
|
||||||
// ... set preamble config value as text
|
|
||||||
$scope.model.text = gettextCatalog.getString(Config.get('motions_preamble').value);
|
|
||||||
// ... for amendments add parent_id
|
// ... for amendments add parent_id
|
||||||
if (isAmendment) {
|
if (isAmendment) {
|
||||||
if (Config.get('motions_amendments_apply_text').value) {
|
if (Config.get('motions_amendments_apply_text').value) {
|
||||||
|
Binary file not shown.
@ -343,6 +343,9 @@
|
|||||||
<ng-include src="'static/templates/motions/motion-detail/toolbar.html'"></ng-include>
|
<ng-include src="'static/templates/motions/motion-detail/toolbar.html'"></ng-include>
|
||||||
|
|
||||||
<div ng-class="{'col-sm-8': (lineNumberMode != 'outside'), 'col-sm-12': (lineNumberMode == 'outside')}">
|
<div ng-class="{'col-sm-8': (lineNumberMode != 'outside'), 'col-sm-12': (lineNumberMode == 'outside')}">
|
||||||
|
|
||||||
|
<div><p>{{ config('motions_preamble') | translate }}</p></div>
|
||||||
|
|
||||||
<div class="motion-text-holder">
|
<div class="motion-text-holder">
|
||||||
|
|
||||||
<!-- Original view -->
|
<!-- Original view -->
|
||||||
|
@ -75,6 +75,9 @@
|
|||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Preamble -->
|
||||||
|
<div><p>{{ config('motions_preamble') | translate }}</p></div>
|
||||||
|
|
||||||
<!-- Text -->
|
<!-- Text -->
|
||||||
<div ng-bind-html="motion.getTextWithLineBreaks(null, line, scroll) | trusted"
|
<div ng-bind-html="motion.getTextWithLineBreaks(null, line, scroll) | trusted"
|
||||||
class="motion-text line-numbers-{{ config('motions_default_line_numbering') }}"></div>
|
class="motion-text line-numbers-{{ config('motions_default_line_numbering') }}"></div>
|
||||||
|
Loading…
Reference in New Issue
Block a user