diff --git a/openslides/agenda/views.py b/openslides/agenda/views.py index 57629e1e4..b57128fbd 100644 --- a/openslides/agenda/views.py +++ b/openslides/agenda/views.py @@ -226,6 +226,7 @@ def get_widgets(request): return [ Widget( name='agenda', + display_name=_('Agenda'), template='agenda/widget.html', context={ 'agenda': SLIDE['agenda'], diff --git a/openslides/assignment/views.py b/openslides/assignment/views.py index 02e78bf1b..fde043889 100644 --- a/openslides/assignment/views.py +++ b/openslides/assignment/views.py @@ -674,7 +674,8 @@ def register_tab(request): def get_widgets(request): return [ Widget( - name=_('Assignments'), + name='assignments', + display_name=_('Elections'), template='assignment/widget.html', context={'assignments': Assignment.objects.all()}, permission_required='assignment.can_manage_assignment')] diff --git a/openslides/motion/views.py b/openslides/motion/views.py index 4512f05a1..8f564d60f 100644 --- a/openslides/motion/views.py +++ b/openslides/motion/views.py @@ -925,6 +925,7 @@ def get_widgets(request): return [ Widget( name='motions', + display_name=_('Motions'), template='motion/widget.html', context={'motions': Motion.objects.all()}, permission_required='motion.can_manage_motion')] diff --git a/openslides/participant/views.py b/openslides/participant/views.py index 8c53601fb..974d7d183 100644 --- a/openslides/participant/views.py +++ b/openslides/participant/views.py @@ -573,7 +573,7 @@ def get_user_widget(request): """ return Widget( name='user', - display_name=_('Users'), + display_name=_('Participants'), template='participant/user_widget.html', context={'users': User.objects.all(),}, permission_required='projector.can_manage_projector',