Django admin customizing interface
Project description
Django admin customizing interface
Features
Multiple admin instances for the same model
Customization of:
list_display
list_filter
raw_id_fields
search_fields
TODO
actions configurator
base admin class support
Requirements
Django 1.2, 1.3, 1.4, trunk. Django 1.1 is NOT supported.
Python 2.6 or 2.7
Installation guide
Install from pypi, with pip:
pip install django-admin-customizer
Or with setuptools:
easy_install django-admin-customizer
Add admin_customizer to INSTALLED_APPS:
INSTALLED_APPS += ("admin_customizer", )
Add the admin customizer’s urls to your root url conf. This is the url where your will access your custom admin instances. Eg: in your project’s urls.py add:
(r'^admin/_/', include('admin_customizer.urls')),
After that you need to run:
manage.py syncdb
Or if you use south:
manage.py syncdb --migrate
You need to update admin_customizer’s models to get it working, initially and after each model change with:
manage.py refresh_available_fields
Note:
If you delete models the registered admins will be deleted for them.
If you delete fields from models the registered admins will have them removed after you run refresh_available_fields.
django-admin-customizer has static files for widgets in the edit interface. If you use staticfiles just run:
manage.py collectstatic
If you do not use django.contrib.staticfiles you must manually symlink the site-packages/admin_customizer/static/admin_customizer dir to <your media root>/admin_customizer.
Making extra actions available
TODO
Settings
ADMIN_CUSTOMIZER_MAX_FIELD_DEPTH - depth to look for relations when inspecting models.
Middleware
To enable urlpattern reloading add 'admin_customizer.middleware.URLResolverReloadMiddleware' to MIDDLEWARE_CLASSES.
Warning!
You must have working django cache for this to work properly ! See django’s cache documentation on this.
If you do not enable this you will have to restart the webserver after every AdminSite or RegisteredModel change !
Screenshots
Edit page:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-admin-customizer-0.2.tar.gz
.
File metadata
- Download URL: django-admin-customizer-0.2.tar.gz
- Upload date:
- Size: 52.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9ac40dc08015482e343554b1703b4a1cb6186237931ba6d21805b642601c1e1 |
|
MD5 | 1bcc0bf7c7b0b2f4944f7ce479d87176 |
|
BLAKE2b-256 | 376850cce5f12025b28f9d6b3cc02075ea22d5395d64841a5e62a65800966a0f |