crispy tag in forms code example
Example: crispy forms
Install latest stable version into your python environment using pip:
pip install django-crispy-forms
Once installed add crispy_forms to your INSTALLED_APPS in settings.py:
INSTALLED_APPS = (
...
'crispy_forms',
)