diff --git a/openslides/motions/config_variables.py b/openslides/motions/config_variables.py index 8b1db73a9..7085b3bb1 100644 --- a/openslides/motions/config_variables.py +++ b/openslides/motions/config_variables.py @@ -127,10 +127,11 @@ def get_config_variables(): subgroup='Amendments') yield ConfigVariable( - name='motions_amendments_apply_title_text', + name='motions_amendments_apply_text', default_value=False, input_type='boolean', - label='Apply title and text for new amendments', + label='Apply text for new amendments', + help_text='The title of the motion is always applied.', weight=342, group='Motions', subgroup='Amendments') diff --git a/openslides/motions/static/js/motions/site.js b/openslides/motions/static/js/motions/site.js index 2c2ceecff..0557968bd 100644 --- a/openslides/motions/static/js/motions/site.js +++ b/openslides/motions/static/js/motions/site.js @@ -1370,10 +1370,10 @@ angular.module('OpenSlidesApp.motions.site', [ $scope.model.text = gettextCatalog.getString(Config.get('motions_preamble').value); // ... for amendments add parent_id if (isAmendment) { - if (Config.get('motions_amendments_apply_title_text').value) { - $scope.model.title = $scope.$parent.motion.getTitle(); + if (Config.get('motions_amendments_apply_text').value) { $scope.model.text = $scope.$parent.motion.getText(); } + $scope.model.title = $scope.$parent.motion.getTitle(); $scope.model.parent_id = $scope.$parent.motion.id; Motion.bindOne($scope.model.parent_id, $scope, 'parent'); } @@ -1932,7 +1932,8 @@ angular.module('OpenSlidesApp.motions.site', [ gettext('Amendments'); gettext('Activate amendments'); gettext('Prefix for the identifier for amendments'); - gettext('Apply title and text for new amendments'); + gettext('Apply text for new amendments'); + gettext('The title of the motion is always applied.'); // subgroup Suppoerters gettext('Supporters');