Django Admin Generator is a management command toautomatically generate a Django `admin.py` file for given apps/models.
Project description
Introduction
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
Install
To install simply execute python setup.py install in the source directory or pip install django-admin-generator. If you want to run the tests first, run py.test
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
Hashes for django-admin-generator-1.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9f6b72a8f7bf014ec38481222aff376170f638b4eb611d09aa8726a96a902f1 |
|
MD5 | 35ab3e8768edfb6845f2257bb2d90c34 |
|
BLAKE2b-256 | ed959949c6a4402cca8d81d29136629f9d83768549eb47bacc99684d332f6e9c |