django-siteforms
django-siteforms copied to clipboard
Django reusable app to simplify form construction
Allow setting initial values for a form. Something like: ```python def _initialize_pre(self, *, args, kwargs): initial = kwargs.get('initial') or {} if initial: src = self.src request = self.request prefix =...
See https://github.com/idlesign/django-siteforms/blob/master/siteforms/composers/bootstrap5.py#L79
If `opt_columns = True` validation error text is out twice - just after the field, and outside of the column div.