A django app to customize your admin interface with icons for applications and models and other stuffs
Read the full documentation at: http://twentytab-customadmin.readthedocs.org
Use the following command: pip install twentytab-customadmin
- settings.py
Open settings.py and add customadmin to your INSTALLED_APPS (before django.contrib.admin):
INSTALLED_APPS = {
...,
'customadmin',
'django.contrib.admin',
'inspectmodel',
'imagekit',
'image_ui',
'rosetta',
...
}
- urls.py
urlpatterns = patterns('',
... ,
(r'^admin/', include(contrib.admin.site.urls)),
(r'', include('customadmin.urls')),
(r'^rosetta/', include('rosetta.urls')),
(r'', include('inspectmodel.urls')),
...
)
- Static files
Run collectstatic command or map static directory.