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 linkDocumentation
{% for radio in myform.beatles %}
<label for="{{ radio.id_for_label }}">
{{ radio.choice_label }}
<span class="radio">{{ radio.tag }}</span>
</label>
{% endfor %}
Methods
▷ def __init__(self, parent_widget, data, renderer) @property
def choice_label(self)
@property
def id_for_label(self)
▷ def tag(self, wrap_label=False) @property
def template_name(self)