
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
django-admin-generator
Advanced tools
Django Admin Generator is a management command to automatically generate a Django `admin.py` file for given apps/models.
Build status:
.. image:: https://github.com/WoLpH/django-admin-generator/actions/workflows/main.yml/badge.svg :alt: django-admin-generator test status :target: https://github.com/WoLpH/django-admin-generator/actions
Coverage:
.. image:: https://coveralls.io/repos/WoLpH/django-admin-generator/badge.svg?branch=master :alt: Coverage Status :target: https://coveralls.io/r/WoLpH/django-admin-generator?branch=master
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 fieldslist_filter
for foreign keys with few itemsraw_id_fields
for foreign keys with a lot of itemssearch_fields
for name and slug
fieldsprepopulated_fields
for slug
fieldsdate_hierarchy
for created_at
, updated_at
or joined_at
fieldsTo install:
pip install django-admin-generator
or execute python setup.py install
in the source directorydjango_admin_generator
to your INSTALLED_APPS
If you want to run the tests, run py.test
(requires pytest
)
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
FAQs
Django Admin Generator is a management command to automatically generate a Django `admin.py` file for given apps/models.
We found that django-admin-generator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.