I have a model form
forms.py
class (forms.ModelForm):
class Meta:
model = InfoPersonal
fields = [
'name',
'phone_number'
]
models.py
class InfoPersonal(models.Model):
name = models.CharField(_('ИмÑ'), max_length=50)
phone_number = PhoneNumberField(
_('Ðомер телефона'), max_length=20, unique=True, blank=True, null=True,
personal_info-add.html
I want to get the result as shown in the picture( email -> name passord -> tel). Is it possible to add a tag in the module itself?
I need the
how to implement it help please!!!