Crispy forms Django

pip install django-crispy-forms pip install crispy-bootstrap4 settings.py: INSTALLED_APPS add: 'crispy_forms', 'crispy_bootstrap4', forms.py в классе формы: def init(self, args, kwargs): super(SignUpForm, self).init(args, **kwargs) self.helper = FormHelper() self.helper.form_method = 'post' self.helper.add_input(Submit('submit', 'Send')) Здесь SignUpForm - класс той самой формы, в которой создаётся этот init. Template: {% load crispy_forms_tags %} {{ form|crispy }} Документация: https://django-crispy-forms.readthedocs.io/en/latest/crispy_tag_forms.html

Django
Forms