sergey
18 июля 2023 г. 16:22

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()

sergey