Fixed showSubtitle config. Reordered agenda config.
This commit is contained in:
parent
e75bdeb0f7
commit
4e6f0850c4
@ -110,7 +110,7 @@ _('Arabic');
|
||||
_('Roman');
|
||||
_('Begin of event');
|
||||
_('Input format: DD.MM.YYYY HH:MM');
|
||||
_('Show subtitles in the agenda');
|
||||
_('Show motion submitters in the agenda');
|
||||
_('Hide internal items when projecting subitems');
|
||||
_('Number of the next speakers to be shown on the projector');
|
||||
_('Enter number of the next shown speakers. Choose -1 to show all next speakers.');
|
||||
|
@ -47,7 +47,7 @@
|
||||
</div>
|
||||
|
||||
<!-- Subtitle line -->
|
||||
<div class="subtitle ellipsis-overflow">
|
||||
<div class="subtitle ellipsis-overflow" *ngIf="showSubtitle">
|
||||
{{ item.getSubtitle() }}
|
||||
</div>
|
||||
|
||||
|
@ -20,15 +20,7 @@ def get_config_variables():
|
||||
help_text="Input format: DD.MM.YYYY HH:MM",
|
||||
weight=200,
|
||||
group="Agenda",
|
||||
)
|
||||
|
||||
yield ConfigVariable(
|
||||
name="agenda_show_subtitle",
|
||||
default_value=False,
|
||||
input_type="boolean",
|
||||
label="Show subtitles in the agenda",
|
||||
weight=201,
|
||||
group="Agenda",
|
||||
hidden=True,
|
||||
)
|
||||
|
||||
# Numbering
|
||||
@ -111,6 +103,16 @@ def get_config_variables():
|
||||
subgroup="Visibility",
|
||||
)
|
||||
|
||||
yield ConfigVariable(
|
||||
name="agenda_show_subtitle",
|
||||
default_value=True,
|
||||
input_type="boolean",
|
||||
label="Show motion submitters in the agenda",
|
||||
weight=213,
|
||||
group="Agenda",
|
||||
subgroup="Visibility",
|
||||
)
|
||||
|
||||
# List of speakers
|
||||
|
||||
yield ConfigVariable(
|
||||
|
@ -361,7 +361,7 @@ class ConfigViewSet(TestCase):
|
||||
|
||||
def test_reset_group(self):
|
||||
config["general_event_name"] = "test_name_of20w2fj20clqwcm2pij" # Group General
|
||||
config["agenda_show_subtitle"] = True # Group Agenda
|
||||
config["agenda_show_subtitle"] = False # Group Agenda
|
||||
config[
|
||||
"motions_preamble"
|
||||
] = "test_preamble_2390jvwohjwo1oigefoq" # Group motions
|
||||
@ -370,7 +370,7 @@ class ConfigViewSet(TestCase):
|
||||
)
|
||||
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||
self.assertEqual(config["general_event_name"], "OpenSlides")
|
||||
self.assertEqual(config["agenda_show_subtitle"], False)
|
||||
self.assertEqual(config["agenda_show_subtitle"], True)
|
||||
self.assertEqual(
|
||||
config["motions_preamble"], "test_preamble_2390jvwohjwo1oigefoq"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user