Files @ 2642c0311574
Branch filter:

Location: symposion_app/pinaxcon/templates/forms/render_fields.html

Sachi King
Sneak 2017 into the list of previous years
{% for field in form %}
  {% if not field.is_hidden %}
    <div class="fieldWrapper {% if field.errors %}has-errors{% endif %}">
      <div>
        {% include "forms/widget.html" %}
      </div>

      {% if field.help_text %}
        <span class="help_text">{{ field.help_text|safe }}</span>
      {% endif %}
    </div>
  {% endif %}
{% endfor %}