Files @ b3ac11a66b72
Branch filter:

Location: symposion_app/pinaxcon/templates/_form_snippet.html

Sachi King
Simplify django form rendering

Remove my hack to get bootstrap forms.

Remove the insane render-row-at-a-time forms that then only render
default django forms.
{% load pyconau2017_tags %}
{% load bootstrap %}

{% if form.non_field_errors %}
  <div class="has-errors">
    {{ form.non_field_errors }}
  </div>
  <br/>
{% endif %}

<blockquote>
  Fields marked with <strong>*</strong> are required.
</blockquote>

{{ form|bootstrap_horizontal }}