Hi! I've this django form
class CustomerForm(forms.Form):
first_name = forms.CharField(label=_('Nome'), max_length=30)
last_name = forms.CharField(label=_('Cognome'), max_length=30)
business_name = forms.CharField(label=_('Ragione Sociale'),
max_length=100)
vat_number = forms.CharField(label=_('Partita iva'),
max_length=11, required=False)
and I want to group the inputs (first_name and last_name, business_name and vat_number) so that when I display the form I get first_name and last_name in a div and business_name and vat_number in a another div
is this possible?
Thanks :)