Headcrab
0
Q:

crispy forms

# Top of HTML page
{% load crispy_forms_tags %}

# In Settings
INSTALLED_APPS = [
	'crispy_forms',
]

# Very Bottom of Settings
CRISPY_TEMPLATE_PACK = 'bootstrap4'
2
{% load crispy_forms_tags %}
0
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',
)
0
pip install django-crispy-forms
7

New to Communities?

Join the community