Is there a way to create a form from profile models ?
For example... If I have this model as profile:
class blogger(models.Model):
    user = models.ForeignKey(User, unique=True)
    born = models.DateTimeField('born')    
    gender = models.CharField(max_length=1, choices=gender )
    about = models.TextField(_('about'), null=True, blank=True)
.
I want this form:
Name:
Surname:
Born:
Gender:
About:
Is this possible ? If yes how ?