2013-12-09 23:56:01 +01:00
|
|
|
from django.utils.translation import ugettext_lazy
|
|
|
|
|
|
|
|
from openslides.utils.main_menu import MainMenuEntry
|
|
|
|
|
|
|
|
|
|
|
|
class AgendaMainMenuEntry(MainMenuEntry):
|
|
|
|
"""
|
|
|
|
Main menu entry for the agenda app.
|
|
|
|
"""
|
|
|
|
verbose_name = ugettext_lazy('Agenda')
|
2014-05-15 20:07:09 +02:00
|
|
|
required_permission = 'agenda.can_see_agenda'
|
2013-12-09 23:56:01 +01:00
|
|
|
default_weight = 20
|
|
|
|
pattern_name = 'item_overview'
|
2015-01-17 13:31:06 +01:00
|
|
|
icon_css_class = 'glyphicon-calendar'
|