Django Admin Generator is a management command to automatically generate a Django `admin.py` file for given apps/models.
Project description
Introduction
Build status:
Coverage:
The Django Admin Generator is a project which can automatically generate (scaffold) a Django Admin for you. By doing this it will introspect your models and automatically generate an Admin with properties like:
list_display for all local fields
list_filter for foreign keys with few items
raw_id_fields for foreign keys with a lot of items
search_fields for name and slug fields
prepopulated_fields for slug fields
date_hierarchy for created_at, updated_at or joined_at fields
Links
- Documentation
- Package homepage
- My blog
Install
To install:
Run pip install django-admin-generator or execute python setup.py install in the source directory
Add django_admin_generator to your INSTALLED_APPS
If you want to run the tests, run py.test (requires pytest)
Usage
To generate an admin for a given app:
./manage.py admin_generator APP_NAME >> APP_NAME/admin.py
To generate an admin for a given app with all models starting with user:
./manage.py admin_generator APP_NAME ‘^user’ >> APP_NAME/admin.py
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
Built Distribution
Hashes for django-admin-generator-2.5.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d72eb7eb13b81479e6c498cac30ab2c8928abe02addccdfa606d02b72d22063a |
|
MD5 | e36ff01ac26d2d65ae03fac2bf5dae51 |
|
BLAKE2b-256 | e84482e10e08db77ad267025fdafa72ed3d34c5f8399ad794ecae3740d1a903a |
Hashes for django_admin_generator-2.5.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03087feff1171246bff2e15bff7496e36f9bb1e6c2c209780276c563f2f8127e |
|
MD5 | fbe33ca3eca31415e454d3ea77cc6cc1 |
|
BLAKE2b-256 | 6f8d65656f8b6fd6b47e728a0b886391c559e174ef9deb97e405ce7c933c74dd |