Metadata-Version: 1.1
Name: djangocms-classic-admin-style
Version: 1.0.2
Summary: Enables Django's original admin styling to work nicely with Django CMS
Home-page: https://github.com/tdsymonds/djangocms-classic-admin-style
Author: Tom Symonds
Author-email: tdsymonds@hotmail.com
License: MIT License
Description: djangocms-classic-admin-style
        ==============================
        I'm a big fan of `django-cms`_ but I've always thought that their `djangocms-admin-style`_ wasn't an improvement on the original Django admin styling. In the past I just wouldn't use `djangocms-admin-style`_, but then there are a few styling issues that you can then run into. This app is to fix those styling bugs.
        
        
        Installation
        ------------
        To install::
        
            pip install djangocms-classic-admin-style
        
        Then add djangocms_classic_admin_style to your installed apps before Django's admin::
        
            INSTALLED_APPS = [
                ...
                'djangocms_classic_admin_style',
                'django.contrib.admin',
                ...
            ]
        
        Then collect the static files and that's it::
        
            python manage.py collectstatic
        
        
        .. _django-cms: https://github.com/divio/django-cms
        .. _djangocms-admin-style: https://github.com/divio/djangocms-admin-style
        
Keywords: djangocms-classic-admin-style,django,cms,admin,style
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
