crispy forms

Solutions on MaxInterview for crispy forms by the best coders in the world

showing results for - "crispy forms"
Issam
27 Nov 2018
1pip install django-crispy-forms
2
Louca
18 Aug 2019
1# In Settings
2INSTALLED_APPS = [
3	'crispy_forms',
4]
5
6# Very Bottom of Settings
7CRISPY_TEMPLATE_PACK = 'bootstrap4'
8
9# Top of HTML page
10{% load crispy_forms_tags %}
11
12# Apply styling to form
13{{ form | crispy }}
similar questions
queries leading to this page
crispy forms