16 lines
445 B
Python
Executable File
16 lines
445 B
Python
Executable File
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from common.api import register_menu
|
|
|
|
check_settings = {'text':_(u'settings'), 'view':'check_settings', 'famfam':'cog'}
|
|
|
|
|
|
register_menu([
|
|
{'text':_(u'home'), 'view':'home', 'famfam':'house', 'position':0},
|
|
|
|
{'text':_(u'setup'), 'view':'check_settings', 'links': [
|
|
],'famfam':'cog', 'name':'setup','position':7},
|
|
|
|
{'text':_(u'about'), 'view':'about', 'position':8},
|
|
])
|