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.6.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73c6e5d2d92671795cdca2ef3d307ca2d374810ded35d1dceffa33f20e774799 |
|
MD5 | ac5137a1521b93e96a2e28ee266eae12 |
|
BLAKE2b-256 | c36767dbe30af93492dec31cff5448635f97c71702bf6641fff69b6d4840810d |
Hashes for django_admin_generator-2.6.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1964c8d20707fee0a0bbb83eafee8d1afb0bdfead0c6e7bff9ec549f02b238f |
|
MD5 | 4a9206bce451d818cac12637ad694e34 |
|
BLAKE2b-256 | 733d1df59ecf3c9d4b108902f711a34b8cb819a3c2c8ecf48fddd0bedaf93b54 |