Changes between Initial Version and Version 1 of Ticket #9230, comment 14
- Timestamp:
- May 22, 2015, 12:58:30 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9230, comment 14
initial v1 27 27 {% endfor %} 28 28 }}} 29 30 31 Ok, found the documentation: https://docs.djangoproject.com/en/1.7/ref/forms/widgets/#django.forms.RadioSelect 32 33 However, if I update my template to: 34 {{{ 35 {% for field in form.visible_fields %} 36 37 {%if field.name == "repeat_weekday" %} 38 {% for checkbox in field.repeat_weekday %} 39 <td>{ {field} }<td> 40 41 {% endfor%} 42 43 {% endif %} 44 45 46 {% endfor %} 47 48 }}} 49 50 It still does not work.