django-admintheme

Django Admin Theme is a drop-in CSS replacement for the Django Admin app.


License
Other
Install
pip install django-admintheme==0.1b1

Documentation

Django Admin Theme

Django Admin Theme is a CSS-only skin for the Django's Admin app. This allows projects that make customizations to the standard admin templates to work without modification.

https://raw.github.com/callowayproject/django-admintheme/master/doc_src/screenshots/login.png

https://raw.github.com/callowayproject/django-admintheme/master/doc_src/screenshots/dashboard.png

https://raw.github.com/callowayproject/django-admintheme/master/doc_src/screenshots/changelist.png

https://raw.github.com/callowayproject/django-admintheme/master/doc_src/screenshots/changeform_success.png

https://raw.github.com/callowayproject/django-admintheme/master/doc_src/screenshots/changeform_error.png

Use

  1. Install the app with pip install django-admintheme.

  2. Add admintheme to the top of INSTALLED_APPS:

    INSTALLED_APPS = (
        'admintheme',
        'django.contrib.admin',
        # ...
    )
    
  • Submit bugs.
  • Give Feedback.
    • Enter feedback as a bug (see above).
    • We'll keep it open for some discussion, if necessary, depending on other feedback.
  • Submit Patches.
    • Types of patches:
      • Updates to the test_pages files for missed cases.
      • Documentation updates
      • SCSS updates
    • Submit a pull request!
    • Include a screen shot if it is a different look so others can give feedback without having to download and install the fork.