Files @ e2e69bb1cf3d
Branch filter:

Location: symposion_app/pinaxcon/templates/_form_snippet.html

Scott Bragg
Minimum viable changes to get schedule to display (#64)
{% if form.non_field_errors %}
  {{ form.non_field_errors }}
  <br/>
{% endif %}

<p>Fields marked with <strong>(*)</strong> are required.</p>

{% for field in form %}
  {% if not field.is_hidden %}
    <div class="fieldWrapper">
      <div>
        {% include "forms/widget.html" %}
      </div>

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

      <p></p>
    </div>
  {% endif %}
{% endfor %}