I have a select field in the form and now I need to iterate over options in this field.
{{ form.myselect }} gives me this:
{{ form.myselect }}
With radio buttons in your template use.
{% for x,y in form.fields.Customer.choices %} {{ y }} {% endfor %}