django crispy forms code example
Example 1: pip install crispy_forms
pip install django-crispy-forms
Example 2: crispy forms
INSTALLED_APPS = [
'crispy_forms',
]
CRISPY_TEMPLATE_PACK = 'bootstrap4'
{% load crispy_forms_tags %}
{{ form | crispy }}
Example 3: django crispy forms foundation for site
pip install crispy-forms-foundation
Example 4: 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',
)