Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 21 days 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 (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-01-31T16:21:36.000Z (almost 8 years ago)
- Last Synced: 2024-11-21T01:15:51.659Z (about 1 month 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.