diff --git a/openslides/assignment/views.py b/openslides/assignment/views.py index 28277c756..f49bf097a 100644 --- a/openslides/assignment/views.py +++ b/openslides/assignment/views.py @@ -659,7 +659,7 @@ def register_tab(request): def get_widgets(request): return [ Widget( - name=_('Assignments'), + name='assignments', template='assignment/widget.html', context={'assignments': Assignment.objects.all()}, permission_required='assignment.can_manage_assignment')] diff --git a/openslides/projector/templates/projector/dashboard.html b/openslides/projector/templates/projector/dashboard.html index 325c40865..fd0d6fd4c 100644 --- a/openslides/projector/templates/projector/dashboard.html +++ b/openslides/projector/templates/projector/dashboard.html @@ -46,7 +46,8 @@ {% for name, widget in widgets.items %} {% if widget.default_column == 1 %}
-
+
+

{% trans widget.get_title %}

diff --git a/openslides/projector/views.py b/openslides/projector/views.py index cd906207c..52d6aa8e5 100644 --- a/openslides/projector/views.py +++ b/openslides/projector/views.py @@ -401,7 +401,7 @@ def get_widgets(request): context.update(csrf(request)) widgets.append(Widget( name='overlays', - display_name=_('Manage Overlays'), + display_name=_('Overlays'), template='projector/overlay_widget.html', permission_required='projector.can_manage_projector', default_column=2, @@ -414,7 +414,7 @@ def get_widgets(request): 'welcomepage_is_active': not bool(config["presentation"])} widgets.append(Widget( name='custom_slide', - display_name=_('Custom Slide'), + display_name=_('Custom Slides'), template='projector/custom_slide_widget.html', context=context, permission_required='projector.can_manage_projector', diff --git a/openslides/static/styles/base.css b/openslides/static/styles/base.css index 70f02084e..e26255fef 100644 --- a/openslides/static/styles/base.css +++ b/openslides/static/styles/base.css @@ -209,13 +209,13 @@ form .required label:after { .icon-agenda { background-position: -264px 0; } -.icon-application { +.icon-application, .icon-applications { background-position: -24px -24px; } -.icon-assignment { +.icon-assignment, .icon-assignments { background-position: -144px -72px; } -.icon-participant { +.icon-participant, .icon-participants { background-position: -168px 0; } .icon-config {