pip install django-crispy-forms
python
INSTALLED_APPS = [
...
'crispy_forms',
...
]
html
{% load crispy_forms_tags %}
html
{% crispy form %}
html
{% crispy_field form.field_name %}
html
{% crispy_errors form %}
html
{% crispy_button form submit_button_name %}
html
{% crispy_form_tags %}