form の bool_flg フィールドでの例
<form action="" method="post"> {% csrf_token %} {% for choice in form.bool_flg.field.choices %} <input name='{{ form.bool_flg.name }}' id='{{ form.bool_flg.auto_id }}_{{ forloop.counter0 }}' type='radio' value='{{ choice.0 }}' {% if choice.0 %} checked='checked'{% endif %} /> <label for='{{ form.bool_flg.auto_id }}_{{ forloop.counter0 }}'>{{ choice.1 }}</label> {% endfor %} </form>