I am using django registration form and I want to add an extra field age to sign up form and i want to save that field to my model named profile.How can i do it.What will be my view?
my models.py
class Profile(models.Model):
    age = models.IntegerField()
 
     
     
     
    