Files @ 1886323d7431
Branch filter:

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

Sachi King
Bootstrapification

Boot custom CSS, and put some base, standard css in its place.
Shame I did not start with fresh Bootstrap4, but oh well.

Some more templates could be made to make this less messy, which would
be good.
<h3>
  {{ field.label }}{% if field.field.required %} *{% endif %}
  {{ field.errors }}
</h3>
{% if field.help_text %}
  <span class="help_text">{{ field.help_text|safe }}</span>
{% endif %}

{% for item in field %}
  <div class="col-sm-offset-2 col-sm-10">
    {{ item }}
  </div>
{% endfor%}