Skip to content
This repository has been archived by the owner on Aug 26, 2020. It is now read-only.

The Django Admin Generator automatically generates (scaffolds) a fully functioning Django admin by introspecting and querying your models

Notifications You must be signed in to change notification settings

rajat404/django-admin-generator

 
 

Repository files navigation

Readme

Introduction

Test Status Coverage Status

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
  • date_hierarchy for created_at, updated_at or joined_at fields

Supports django-simple-history & django-import-export

Every ModelAdmin generated by this lib has export functionality using django-import-export

Also it excludes the models provided by django-simple-history

Install

To install:

  1. Run pip install django-admin-generator or execute python setup.py install in the source directory
  2. 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

To generate an admin for a given app with all models starting with user:

./manage.py admin_generator APP_NAME '^user'

TODO

  • Update README
  • Allow installation via pip

About

The Django Admin Generator automatically generates (scaffolds) a fully functioning Django admin by introspecting and querying your models

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%