Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.