Metadata-Version: 2.0
Name: django-tapeforms
Version: 0.2.0
Summary: A helper to render Django forms using HTML templates.
Home-page: https://github.com/stephrdev/django-tapeforms
Author: Stephan Jaekel
Author-email: steph@rdev.info
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/stephrdev/django-tapeforms/issues
Project-URL: Source, https://github.com/stephrdev/django-tapeforms
Description-Content-Type: UNKNOWN
Keywords: django forms
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6

django-tapeforms
================

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

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

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

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

Usage
-----

Please refer to the `Documentation <https://django-tapeforms.readthedocs.io/>`_ to
learn how to use ``django-tapeforms``. Basicly, ``tapeforms`` provides a mixin
and some Django template tags to help you render your forms to HTML.


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

django-tapeforms supports Python 3 only and requires at least Django 1.11 (because
of the template based widget rendering). No other dependencies are required.


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

A Python 3.6 interpreter is required in addition to pipenv.

.. code-block:: shell

    $ pipenv install --python 3.6
    $ pipenv shell
    $ pip install -e .


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

.. code-block:: shell

    $ pipenv run python examples/manage.py runserver


