Metadata-Version: 2.0
Name: django-cruditor
Version: 0.1.3
Summary: Set of generic class based views with Bootstrap templates.
Home-page: https://github.com/moccu/django-cruditor
Author: Moccu GmbH & Co. KG
Author-email: info@moccu.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: django (>=1.8,<1.10)
Requires-Dist: django-filter (>=0.13,<0.14)
Requires-Dist: django-floppyforms (<1.7,>=1.6)
Requires-Dist: django-tables2 (<1.2,>=1.1)
Provides-Extra: docs
Requires-Dist: sphinx (<1.5,>=1.4); extra == 'docs'
Provides-Extra: tests
Requires-Dist: factory-boy; extra == 'tests'
Requires-Dist: mock; extra == 'tests'
Requires-Dist: pydocstyle; extra == 'tests'
Requires-Dist: pytest; extra == 'tests'
Requires-Dist: pytest-cov; extra == 'tests'
Requires-Dist: pytest-django; extra == 'tests'
Requires-Dist: pytest-flakes; extra == 'tests'
Requires-Dist: pytest-isort; extra == 'tests'
Requires-Dist: pytest-pep8; extra == 'tests'
Requires-Dist: tox; extra == 'tests'
Requires-Dist: tox-pyenv; extra == 'tests'

django-cruditor
===============

.. image:: https://badge.fury.io/py/django-cruditor.png
    :target: http://badge.fury.io/py/django-cruditor

.. image:: https://travis-ci.org/moccu/django-cruditor.svg?branch=master
    :target: https://travis-ci.org/moccu/django-cruditor

.. image:: https://coveralls.io/repos/moccu/django-cruditor/badge.svg
    :target: https://coveralls.io/r/moccu/django-cruditor

.. image:: https://readthedocs.org/projects/django-cruditor/badge/?version=latest
    :target: https://readthedocs.org/projects/django-cruditor/?badge=latest


What is django-cruditor
-----------------------

`django-cruditor` is a set of generic class based views with Bootstrap templates.
Together with `django-tables2`, `django-filter` and `django-floppyforms` this
module provides you some easy to use Django views to build your customized
CRUD interface.


Quick start
-----------

To install `django-cruditor` just use your preferred Python package installer::

    $ pip install django-cruditor

Add the `django-cruditor` and its dependencies to to your Django settings

.. code-block:: python

    INSTALLED_APPS = (
        # some other apps
        'floppyforms',
        'django_tables2',
        'cruditor',
    )

Please refer to the examples to see how it works. More documentation will be
added soon.


Contribute
----------

To contribute, you can use `pip install -e .[tests]` to install all required
development packages. To run the tests, just use

.. code-block:: shell

    $ tox

If you don't know where to start, have a look at the `TODO` file in this
repository.


