Installation

The code is published under the BSD license. See License for details.

If you just want to discover the application, you may have a look at the Demo project.

If you want to contribute to the code, you should go to Contribution guidelines documentation.

Install Python package

Install the package with your favorite Python installer. As an example, with pip:

pip install django-formrenderingtools

Update Django project settings

Add djc.formrenderingtools to the INSTALLED_APPS list in your Django project settings:

INSTALLED_APPS = (
    # ...
    'djc.formrenderingtools',
    # ...
)

Depending on you configuration, you may also check TEMPLATE_LOADERS and TEMPLATE_DIRS to make sure that templates distributed within django-formrenderingtools are discovered.

Table Of Contents

Previous topic

Overview

Next topic

Demo project

This Page