21ff62dd32
Changed api for main menu entries. Enhanced http error pages using a classed based views. Moved dashboard and select widgets view from projector to core app. Also some small clean ups.
17 lines
438 B
Python
17 lines
438 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.utils.translation import ugettext_lazy
|
|
|
|
from openslides.utils.main_menu import MainMenuEntry
|
|
|
|
|
|
class AssignmentMainMenuEntry(MainMenuEntry):
|
|
"""
|
|
Main menu entry for the assignment app.
|
|
"""
|
|
verbose_name = ugettext_lazy('Elections')
|
|
permission_required = 'assignment.can_see_assignment'
|
|
default_weight = 40
|
|
pattern_name = 'assignment_list'
|
|
icon_css_class = 'icon-charts'
|