Class BoundWidget

A container class used for iterating over widgets. This is useful for widgets that have choices. For example, the following can be used in a template:

Declaration

@html_safe
class BoundWidget
source link

Documentation

{% for radio in myform.beatles %}
  <label for="{{ radio.id_for_label }}">
    {{ radio.choice_label }}
    <span class="radio">{{ radio.tag }}</span>
  </label>
{% endfor %}

Methods