{% block label %}
{% spaceless %} {% if field.help_text %} {% endif %} {% endspaceless %}
{% endblock %} {% block widget %}
{% if is_readonly %}
{{ field.contents }}
{% else %} {{ field }} {% endif %} {% if not is_readonly %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endblock %}