Changes between Initial Version and Version 1 of Ticket #9230, comment 14


Ignore:
Timestamp:
May 22, 2015, 12:58:30 AM (9 years ago)
Author:
Gerben Morsink

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9230, comment 14

    initial v1  
    2727{% endfor %}
    2828}}}
     29
     30
     31Ok, found the documentation: https://docs.djangoproject.com/en/1.7/ref/forms/widgets/#django.forms.RadioSelect
     32
     33However, 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
     50It still does not work.
Back to Top