https://github.com/20tab/twentytab-customadmin
A django app to customize your admin interface with icons for applications and models and other stuffs
https://github.com/20tab/twentytab-customadmin
Last synced: 5 months ago
JSON representation
A django app to customize your admin interface with icons for applications and models and other stuffs
- Host: GitHub
- URL: https://github.com/20tab/twentytab-customadmin
- Owner: 20tab
- License: mit
- Created: 2014-02-13T17:06:42.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-01-31T16:21:36.000Z (over 9 years ago)
- Last Synced: 2025-03-02T10:47:15.228Z (over 1 year ago)
- Language: HTML
- Size: 228 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NO LONGER MANTAINED
twentytab-customadmin
=====================
A django app to customize your admin interface with icons for applications and models and other stuffs
## Documentation
Read the full documentation at: http://twentytab-customadmin.readthedocs.org
## Installation
Use the following command: pip install twentytab-customadmin
## Configuration
- settings.py
Open settings.py and add customadmin to your INSTALLED_APPS (before django.contrib.admin):
```py
INSTALLED_APPS = {
...,
'customadmin',
'django.contrib.admin',
'inspectmodel',
'imagekit',
'image_ui',
'rosetta',
...
}
```
- urls.py
```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.