Back to Django Allauth

Field

examples/regular-django/example/templates/allauth/elements/field.html

65.16.1896 B
Original Source

{% load allauth %} {% if attrs.type == "checkbox" or attrs.type == "radio" %}

{% slot label %} {% endslot %} {% if slots.help_text %} {% slot help_text %} {% endslot %} {% endif %} {% elif attrs.type == "textarea" %} {% slot label %} {% endslot %} {% slot value %}{% endslot %} {% elif attrs.type == "hidden" %} {% elif attrs.type == "select" %} {% if not attrs.unlabeled %} {% slot label %} {% endslot %} {% endif %} {% for option in attrs.choices %} {{ option.1 }} {% endfor %} {% if attrs.unlabeled %} {% slot label %} {% endslot %} {% endif %} {% else %} {% if not attrs.unlabeled %} {% slot label %} {% endslot %} {% endif %} {% if attrs.unlabeled %} {% slot label %} {% endslot %} {% endif %} {% if slots.help_text %} {% slot help_text %} {% endslot %} {% endif %} {% if attrs.errors %} {% for error in attrs.errors %} {{ error }} {% endfor %} {% endif %} {% endif %}