The important part of my template is the following: > <body> > > <h1>Forms</h1> > > > > {% extends "main.html" %} > > >> {% block content %} > > <form method="post" action='./'{% if form.is_multipart %} >> enctype='multipart/form-data'{% endif %}> > > >> {% csrf_token %} > > > > <table> > > > > {{ lname }} > > {{ fname }} > > {{ r_id }} > > > > {{ form.as_table }} > > >> </table> > > <input type="submit" value="Submit"> > > </form> > > {% endblock %} > > >> >> </body> > > > > I really don't understand how am i going to gain control over each field of my form.
-- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/8n82pLORXwcJ. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.