Metadata-Version: 2.1
Name: django-cruditor
Version: 2.0.0
Summary: A set of class based views and mixins to generate CRUD interfaces.
Home-page: https://github.com/stephrdev/django-cruditor
License: MIT
Author: Stephan Jaekel
Author-email: steph@rdev.info
Requires-Python: >=3.6.2,<4
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: docs
Requires-Dist: Django (>=2.2)
Requires-Dist: Sphinx (>=3.5); extra == "docs"
Requires-Dist: django-filter (>=21.1); extra == "docs"
Requires-Dist: django-tables2 (>=2.4.1); extra == "docs"
Requires-Dist: django-tapeforms (>=1.1.0); extra == "docs"
Requires-Dist: importlib-metadata; python_version < "3.8"
Project-URL: Repository, https://github.com/stephrdev/django-cruditor
Description-Content-Type: text/x-rst

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

.. image:: https://img.shields.io/pypi/v/django-cruditor.svg
   :target: https://pypi.org/project/django-cruditor/
   :alt: Latest Version

.. image:: https://github.com/stephrdev/django-cruditor/workflows/Test/badge.svg?branch=master
   :target: https://github.com/stephrdev/django-cruditor/actions?workflow=Test
   :alt: CI Status

.. image:: https://codecov.io/gh/stephrdev/django-cruditor/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/stephrdev/django-cruditor
   :alt: Coverage Status

.. image:: https://readthedocs.org/projects/django-cruditor/badge/?version=latest
   :target: https://django-cruditor.readthedocs.io/en/stable/?badge=latest
   :alt: Documentation Status


Usage
-----

Please refer to the `Documentation <https://django-cruditor.readthedocs.io/>`_ to
learn how to use ``django-cruditor``. Cruditor is a set of generic class based views
with UIKit styled templates. Together with django-tables2, django-filter and
django-tapeforms this package provides you some easy to use Django views to build
your customized CRUD interface.


Requirements
------------

django-cruditor supports Python 3 only and requires at least Django 2.2.
Optional dependencies are django-tapeforms, django-tables2 and django-filter.


Prepare for development
-----------------------

A Python 3 interpreter is required in addition to poetry.

.. code-block:: shell

    $ poetry install
    # If you want to build docs, execute this in addition
    $ poetry install -E docs


Now you're ready to start the example project to experiment with cruditor.

.. code-block:: shell

    $ poetry run python examples/manage.py runserver

