Metadata-Version: 2.0
Name: djangocms-admindocs-style
Version: 0.2.0
Summary: Adds DjangoCMS Admin Styles to the admindocs
Home-page: https://github.com/goldhand/djangocms-admindocs-style
Author: Will Farley
Author-email: willf@hzdg.com
License: BSD
Keywords: djangocms-admindocs-style
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: django
Requires-Dist: djangocms-admin-style

=============================
djangocms-admindocs-style
=============================

.. image:: https://badge.fury.io/py/djangocms-admindocs-style.png
    :target: https://badge.fury.io/py/djangocms-admindocs-style

.. image:: https://travis-ci.org/goldhand/djangocms-admindocs-style.png?branch=master
    :target: https://travis-ci.org/goldhand/djangocms-admindocs-style

Adds DjangoCMS Admin Styles to the admindocs.

Documentation
-------------

The full documentation is at https://djangocms-admindocs-style.readthedocs.org.

Quickstart
----------

Install djangocms-admindocs-style::

    pip install djangocms-admindocs-style

Then use it in a project by adding it to your installed apps before 'django.contrib.admin' and 'djangocms_admin_style'::

    INSTALLED_APPS = [
        ...
        'djangocms_admindocs_style',
        'djangocms_admin_style',
        'django.contrib.admin',
        'django.contrib.admindocs',
        ...
    ]

Features
--------

* Adds styles from `djangomcs_admin_style <https://github.com/divio/djangocms-admin-style>` to the ``django.contrib.admindocs`` app.
* Makes ``django.contrib.admindocs`` templates all inherit from a single base template that you can extend: ``admin/base_admin_docs.html``
* Adds a link to the DjangoCMS toolbar to a sidebar item

Running Tests
--------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install -r requirements-test.txt
    (myenv) $ python runtests.py

Compiling CSS
-------------

Make sure `sassc` is installed and run::

    npm run sass




History
-------

0.1.0 (2016-04-05)
++++++++++++++++++

* First release on PyPI.


