Layout changes, config for enabling amendments in motions table
- fixed update form bug, explicit link to parent motion - br space in pdf and motion-text (restrict to linenumbermode none)
This commit is contained in:
parent
4605d4429c
commit
65ec9cbf73
@ -20,6 +20,7 @@ Motions:
|
|||||||
- New table of contents with page numbers and categories in PDF [#3766].
|
- New table of contents with page numbers and categories in PDF [#3766].
|
||||||
- New teporal field "modified final version" where the final version can
|
- New teporal field "modified final version" where the final version can
|
||||||
be edited [#3781].
|
be edited [#3781].
|
||||||
|
- New config to show amendments also in motions table [#3792]
|
||||||
|
|
||||||
Core:
|
Core:
|
||||||
- Python 3.4 is not supported anymore [#3777].
|
- Python 3.4 is not supported anymore [#3777].
|
||||||
|
@ -372,7 +372,7 @@ angular.module('OpenSlidesApp.core.pdf', [])
|
|||||||
},
|
},
|
||||||
tocCategoryTitle: {
|
tocCategoryTitle: {
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
margin: [0,0,0,0],
|
margin: [0,0,0,4],
|
||||||
bold: true,
|
bold: true,
|
||||||
},
|
},
|
||||||
tocCategorySection: {
|
tocCategorySection: {
|
||||||
@ -960,6 +960,9 @@ angular.module('OpenSlidesApp.core.pdf', [])
|
|||||||
// not be empty otherwise it will be removed and the empty line is not displayed
|
// not be empty otherwise it will be removed and the empty line is not displayed
|
||||||
if (element.nextSibling && element.nextSibling.nodeName === 'BR') {
|
if (element.nextSibling && element.nextSibling.nodeName === 'BR') {
|
||||||
currentParagraph.text.push(create('text', ' '));
|
currentParagraph.text.push(create('text', ' '));
|
||||||
|
} else if (isInsideAList(element) && lineNumberMode === 'none') {
|
||||||
|
// Put a spacer there, if there is one BR in a list
|
||||||
|
alreadyConverted.push(create('text', ' '));
|
||||||
}
|
}
|
||||||
currentParagraph.lineHeight = 1.25;
|
currentParagraph.lineHeight = 1.25;
|
||||||
alreadyConverted.push(currentParagraph);
|
alreadyConverted.push(currentParagraph);
|
||||||
|
@ -157,6 +157,15 @@ def get_config_variables():
|
|||||||
group='Motions',
|
group='Motions',
|
||||||
subgroup='Amendments')
|
subgroup='Amendments')
|
||||||
|
|
||||||
|
yield ConfigVariable(
|
||||||
|
name='motions_amendments_main_table',
|
||||||
|
default_value=False,
|
||||||
|
input_type='boolean',
|
||||||
|
label='Show amendments together with motions',
|
||||||
|
weight=337,
|
||||||
|
group='Motions',
|
||||||
|
subgroup='Amendments')
|
||||||
|
|
||||||
yield ConfigVariable(
|
yield ConfigVariable(
|
||||||
name='motions_amendments_prefix',
|
name='motions_amendments_prefix',
|
||||||
default_value='-',
|
default_value='-',
|
||||||
|
@ -111,6 +111,17 @@
|
|||||||
left: 20px;
|
left: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.motion-text.line-numbers-none li > br {
|
||||||
|
margin-top: 8px;
|
||||||
|
content: " ";
|
||||||
|
display: block;
|
||||||
|
&.os-line-break {
|
||||||
|
margin-top: 0;
|
||||||
|
content: "";
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@mixin addChangeRecommendationBtn {
|
@mixin addChangeRecommendationBtn {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
content: "\f067";
|
content: "\f067";
|
||||||
|
@ -468,6 +468,10 @@ angular.module('OpenSlidesApp.motions.site', [
|
|||||||
},
|
},
|
||||||
// angular-formly fields for motion form
|
// angular-formly fields for motion form
|
||||||
getFormFields: function (isCreateForm, isParagraphBasedAmendment) {
|
getFormFields: function (isCreateForm, isParagraphBasedAmendment) {
|
||||||
|
if (!isParagraphBasedAmendment) { // catch null and undefined. Angular formy doesn't like this.
|
||||||
|
isParagraphBasedAmendment = false;
|
||||||
|
}
|
||||||
|
|
||||||
var workflows = Workflow.getAll();
|
var workflows = Workflow.getAll();
|
||||||
var images = Mediafile.getAllImages();
|
var images = Mediafile.getAllImages();
|
||||||
var formFields = [];
|
var formFields = [];
|
||||||
@ -1208,7 +1212,14 @@ angular.module('OpenSlidesApp.motions.site', [
|
|||||||
return Motion.lastModified();
|
return Motion.lastModified();
|
||||||
}, function () {
|
}, function () {
|
||||||
// get all main motions and order by identifier (after custom ordering)
|
// get all main motions and order by identifier (after custom ordering)
|
||||||
$scope.motions = _.orderBy(Motion.filter({parent_id: undefined}), ['identifier']);
|
var motions;
|
||||||
|
if (Config.get('motions_amendments_main_table').value) {
|
||||||
|
motions = Motion.getAll();
|
||||||
|
} else {
|
||||||
|
motions = Motion.filter({parent_id: undefined});
|
||||||
|
}
|
||||||
|
|
||||||
|
$scope.motions = _.orderBy(motions, ['identifier']);
|
||||||
_.forEach($scope.motions, function (motion) {
|
_.forEach($scope.motions, function (motion) {
|
||||||
MotionComment.populateFields(motion);
|
MotionComment.populateFields(motion);
|
||||||
motion.personalNote = PersonalNoteManager.getNote(motion);
|
motion.personalNote = PersonalNoteManager.getNote(motion);
|
||||||
@ -3229,6 +3240,7 @@ angular.module('OpenSlidesApp.motions.site', [
|
|||||||
// subgroup Amendments
|
// subgroup Amendments
|
||||||
gettext('Amendments');
|
gettext('Amendments');
|
||||||
gettext('Activate amendments');
|
gettext('Activate amendments');
|
||||||
|
gettext('Show amendments together with motions');
|
||||||
gettext('Prefix for the identifier for amendments');
|
gettext('Prefix for the identifier for amendments');
|
||||||
gettext('Apply text for new amendments');
|
gettext('Apply text for new amendments');
|
||||||
gettext('The title of the motion is always applied.');
|
gettext('The title of the motion is always applied.');
|
||||||
|
@ -31,6 +31,12 @@
|
|||||||
<span ng-class="{'hiddenDiv': !selectHover}" uib-dropdown>
|
<span ng-class="{'hiddenDiv': !selectHover}" uib-dropdown>
|
||||||
<i class="fa fa-cog pointer" uib-dropdown-toggle id="selectDropdown"></i>
|
<i class="fa fa-cog pointer" uib-dropdown-toggle id="selectDropdown"></i>
|
||||||
<ul class="dropdown-menu" aria-labelledby="selectDropdown">
|
<ul class="dropdown-menu" aria-labelledby="selectDropdown">
|
||||||
|
<li>
|
||||||
|
<a href ng-click="selectLeadMotion(null)" translate>
|
||||||
|
All motions
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="divider"></li>
|
||||||
<li ng-repeat="motion in leadMotions">
|
<li ng-repeat="motion in leadMotions">
|
||||||
<a href ng-click="selectLeadMotion(motion)">
|
<a href ng-click="selectLeadMotion(motion)">
|
||||||
<span ng-if="motion.identifier">
|
<span ng-if="motion.identifier">
|
||||||
@ -39,12 +45,6 @@
|
|||||||
{{ motion.getTitle() | limitTo: 35 }}{{ motion.getTitle().length > 35 ? '...' : '' }}
|
{{ motion.getTitle() | limitTo: 35 }}{{ motion.getTitle().length > 35 ? '...' : '' }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="divider" ng-if="amendment.state.getNextStates().length"></li>
|
|
||||||
<li>
|
|
||||||
<a href ng-click="selectLeadMotion(null)" translate>
|
|
||||||
All motions
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</span>
|
</span>
|
||||||
</h3>
|
</h3>
|
||||||
@ -357,10 +357,11 @@
|
|||||||
{{ getTextPreview(amendment.getText(), 400) }}
|
{{ getTextPreview(amendment.getText(), 400) }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- last column -->
|
||||||
<div class="col-xs-4 content" ng-style="{'width': isSelectMode ? 'calc(33.33% - 120px)' : 'calc(33.33% - 70px)'}">
|
<div class="col-xs-4 content" ng-style="{'width': isSelectMode ? 'calc(33.33% - 120px)' : 'calc(33.33% - 70px)'}">
|
||||||
<div style="width: 90%;">
|
<div style="width: 90%;">
|
||||||
<div ng-repeat="(id, field) in noSpecialCommentsFields">
|
<div ng-repeat="(id, field) in noSpecialCommentsFields">
|
||||||
<div class="nobr">
|
<div class="nobr" style="overflow: hidden;">
|
||||||
<i class="fa pointer spacer-right" ng-class="field[amendment.id] ? 'fa-caret-down' : 'fa-caret-right'"
|
<i class="fa pointer spacer-right" ng-class="field[amendment.id] ? 'fa-caret-down' : 'fa-caret-right'"
|
||||||
ng-click="field[amendment.id] = !field[amendment.id]"
|
ng-click="field[amendment.id] = !field[amendment.id]"
|
||||||
ng-if="isTextExpandable(amendment.comments[id], 30)"></i>
|
ng-if="isTextExpandable(amendment.comments[id], 30)"></i>
|
||||||
|
@ -79,12 +79,7 @@
|
|||||||
<span class="change-title" ng-if="motion.isAllowed('update') && !title_change_recommendation"></span>
|
<span class="change-title" ng-if="motion.isAllowed('update') && !title_change_recommendation"></span>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<a ui-sref="motions.motion.detail({id: motion.getParentMotion().id })" ng-if="motion.isAmendment">
|
|
||||||
{{ motion.getTitleWithChanges(viewChangeRecommendations.mode) }}
|
{{ motion.getTitleWithChanges(viewChangeRecommendations.mode) }}
|
||||||
</a>
|
|
||||||
<span ng-if="!motion.isAmendment">
|
|
||||||
{{ motion.getTitleWithChanges(viewChangeRecommendations.mode) }}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<i class="fa pointer" ng-class="motion.personalNote.star ? 'fa-star' : 'fa-star-o'"
|
<i class="fa pointer" ng-class="motion.personalNote.star ? 'fa-star' : 'fa-star-o'"
|
||||||
ng-if="operator.user"
|
ng-if="operator.user"
|
||||||
@ -102,6 +97,14 @@
|
|||||||
</span>
|
</span>
|
||||||
<small>
|
<small>
|
||||||
<translate>Sequential number</translate> {{ motion.getSequentialNumber() }}
|
<translate>Sequential number</translate> {{ motion.getSequentialNumber() }}
|
||||||
|
|
||||||
|
<span ng-if="motion.isAmendment">
|
||||||
|
·
|
||||||
|
<a ui-sref="motions.motion.detail({id: motion.getParentMotion().id })" ng-if="motion.isAmendment">
|
||||||
|
<translate>Amendment to</translate>
|
||||||
|
{{ motion.getParentMotion().identifier || motion.getParentMotion().getTitle() }}
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
</small>
|
</small>
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
@ -552,9 +555,6 @@
|
|||||||
</translate>
|
</translate>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div ng-bind-html="motion.getTextByMode('agreed', version, highlight) | trusted"
|
|
||||||
class="motion-text motion-text-changed line-numbers-{{ lineNumberMode }}"></div>
|
|
||||||
|
|
||||||
<div style="text-align: right;" ng-if="(change_recommendations | filter:{motion_version_id:version}:true).length > 0">
|
<div style="text-align: right;" ng-if="(change_recommendations | filter:{motion_version_id:version}:true).length > 0">
|
||||||
<button class="btn btn-default"
|
<button class="btn btn-default"
|
||||||
ng-bootbox-confirm="{{ 'Do you want to copy the final version to the modified final version field?' | translate }}"
|
ng-bootbox-confirm="{{ 'Do you want to copy the final version to the modified final version field?' | translate }}"
|
||||||
@ -572,6 +572,9 @@
|
|||||||
<translate>New version on these changes</translate>
|
<translate>New version on these changes</translate>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div ng-bind-html="motion.getTextByMode('agreed', version, highlight) | trusted"
|
||||||
|
class="motion-text motion-text-changed line-numbers-{{ lineNumberMode }}"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- modified agreed view -->
|
<!-- modified agreed view -->
|
||||||
|
@ -5,7 +5,8 @@
|
|||||||
<i class="fa fa-plus fa-lg"></i>
|
<i class="fa fa-plus fa-lg"></i>
|
||||||
<translate>New</translate>
|
<translate>New</translate>
|
||||||
</a>
|
</a>
|
||||||
<a ui-sref="motions.motion.allamendments" class="btn btn-default btn-sm">
|
<a ui-sref="motions.motion.allamendments" ng-if="config('motions_amendments_enabled')"
|
||||||
|
class="btn btn-default btn-sm">
|
||||||
<i class="fa fa-book fa-lg"></i>
|
<i class="fa fa-book fa-lg"></i>
|
||||||
<translate>Amendments</translate>
|
<translate>Amendments</translate>
|
||||||
</a>
|
</a>
|
||||||
|
Loading…
Reference in New Issue
Block a user