I have a form like the following:
class MyForm(Form): #personal data firstname = CharField() lastname = CharField() #education data university = Char
Even though your form is populated from a database, you should still be able to manually write out the form, or use a template. Check out the Django form documentation for more details.