Installation

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

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

Installation synopsis

  • Check requirements
  • Get the code
  • Update project settings

Requirements

Notice that managing requirements is easier if you choose an automatic installation procedure.

This application requires:

  • Django-1.3. The application targets the latest stable release of branch 1.x. It may work with previous versions, but tests focus on the latest one.
  • django-templateaddons: a set of helpers for the template designer and template tag developer.

Get the code

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

Latest release

This application is known as “django-formrenderingtools” on Pypi.

So you can install it with pip or easy_install. As an example:

# pip install -U django-formrenderingtools

Obviously, you can also add it to your eggs list in a buildout configuration file.

Development files

You can use pip to automatically download and install the project with versionning:

# pip install -U -e hg+http://bitbucket.org/benoitbryon/django-formrenderingtools#egg=djc.formrenderingtools

Manual installation

Manual installation is not the recommended way: you’d better learn about buildout or virtualenv+pip.

The main project page is http://bitbucket.org/benoitbryon/django-formrenderingtools.

You can clone the repository with the following command line:

$ hg clone http://bitbucket.org/benoitbryon/django-formrenderingtools

Copy the django-formrenderingtools/djc folder somewhere in your PYTHON_PATH. It may be in your project’s directory.

Update settings

  • add ‘djc.formrenderingtools’ to your INSTALLED_APPS

Table Of Contents

Previous topic

Overview

Next topic

Demo project

This Page