I\'m trying to do a form, with gender choices. The user could choice between male or female.
What I have now in forms.py:
class GenderForm(forms.Form):
You have to define url where post data will be sent
This will send post data to url /my_app/my_view/
{% for field in form_gender %} {{ field }} {% endfor %}
This will send post data to current url you are on.