Metadata-Version: 2.0
Name: dj-bootstrap-swatches
Version: 0.4.0
Summary: A swatch page for Bootstrap styling
Home-page: https://github.com/bwarren2/dj-bootstrap-swatches
Author: Ben Warren
Author-email: ben@maaina.com
License: MIT
Keywords: dj-bootstrap-swatches
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
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

=============================
Django Bootstrap Swatches
=============================

.. image:: https://badge.fury.io/py/dj-bootstrap-swatches.svg
    :target: https://badge.fury.io/py/dj-bootstrap-swatches

.. image:: https://travis-ci.org/bwarren2/dj-bootstrap-swatches.svg?branch=master
    :target: https://travis-ci.org/bwarren2/dj-bootstrap-swatches

.. image:: https://codecov.io/gh/bwarren2/dj-bootstrap-swatches/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/bwarren2/dj-bootstrap-swatches

A swatch page for Bootstrap styling

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

The full documentation is at https://dj-bootstrap-swatches.readthedocs.io.

Quickstart
----------

Install Django Bootstrap Swatches::

    pip install dj-bootstrap-swatches

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'dj_bootstrap_swatches.apps.DjBootstrapSwatchesConfig',
        ...
    )

Add Django Bootstrap Swatches's URL patterns:

.. code-block:: python

    from dj_bootstrap_swatches import urls as dj_bootstrap_swatches_urls


    urlpatterns = [
        ...
        url(r'^bootswatch/', include(dj_bootstrap_swatches_urls)),
        ...
    ]

Per "Two Scoops of Django" design patterns, the default swatch page tries to extend a base template called `base.html` and a block called `content`.  If this isn't your practice, you'll need to adjust things to fit.

Features
--------

* TODO

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

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.0 (2017-05-26)
++++++++++++++++++

* First release on PyPI.


