callowayproject / django-admintheme

A CSS-only skin for the Django Admin app
Apache License 2.0
35 stars 0 forks source link

================== 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.

.. contents:: :local:

Screen shots

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

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

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

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

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

Use

. Install the app with pip install django-admintheme.

. Add admintheme to the top of INSTALLED_APPS::

   INSTALLED_APPS = (
       'admintheme',
       'django.contrib.admin',
       # ...
   )

How to Contribute