{{ block title }}
Good | Brand 1 | Brand 2 | Brand 3 |
---|---|---|---|
A | {% for field in form %} {% for choice in field %} {% if forloop.counter <= 3 %}{{ choice }} {{ choice.label }} | {% endif %} {% endfor %} {% endfor %}||
B | {% for field in form %} {% for choice in field %} {% if forloop.counter > 3 and forloop.counter <= 6 %}{{ choice }} {{ choice.label}} | {% endif %} {% endfor %} {% endfor %}||
C | {% for field in form %} {% for choice in field %} {% if forloop.counter > 6 and forloop.counter <= 9 %}{{ choice }} {{ choice.label}} | {% endif %} {% endfor %} {% endfor %}||
D | {% for field in form %} {% for choice in field %} {% if forloop.counter > 9 and forloop.counter <= 12 %}{{ choice }} {{ choice.label}} | {% endif %} {% endfor %} {% endfor %}