Metadata-Version: 1.0
Name: django-bootstrap-admin
Version: 0.3.3
Summary: Adds twitter bootstrap and other nicities to the Django admin
Home-page: http://github.com/maxfolley/django-bootstrap-admin
Author: Maxwell Folley
Author-email: maxwell@weareflavor.com
License: MIT License
Description: ====
        Bootstrap
        =====
        
        Bootstrap is an app for django that adds Twitter Bootstrap and other nicities to the Django admin.
        
        Quick start
        -----------
        
        1. Add "bootstrap" to your INSTALLED_APPS settings before "django.contrib.admin" like this:
        
              INSTALLED_APPS = (
                  ...
                  'bootstrap',
                  'django.contrib.admin',
              )
        
        2. If you want to add custom css to the admin you can override the custom.css file by adding a file at admin/css/custom.css in your apps static directory.
        
        3. Visit http://127.0.0.1:8000/admin/ to check it out.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
