fmartingr
/
shelfzilla
Archived
1
0
Fork 0

Updated admin menu layout with the good names and icons.

Updated admin title with page title (about time!)
This commit is contained in:
Felipe Martín 2014-08-24 12:56:24 +02:00
parent 0149001ff5
commit 1e5a42be69
1 changed files with 31 additions and 0 deletions

View File

@ -224,3 +224,34 @@ FILER_STORAGES = {
SOUTH_MIGRATION_MODULES = {
'easy_thumbnails': 'easy_thumbnails.south_migrations',
}
#
# ADMIN
#
SUIT_CONFIG = {
'ADMIN_NAME': 'Shelfzilla',
'SEARCH_URL': '',
'MENU': (
{
'app': 'auth',
'label': 'Authorization',
'icon': 'icon-lock',
'models': ('user', 'group')
},
{
'app': 'config',
'label': 'Settings',
'icon': 'icon-cog',
},
{
'app': 'manga',
'label': 'Manga',
'icon': 'icon-book',
},
{
'label': 'Files',
'icon': 'icon-file',
'app': 'filer',
},
),
}