Files @ 1886323d7431
Branch filter:

Location: symposion_app/pinaxcon/templates/forms/widget_basic.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.
1
2
3
4
5
6
7
8
<label for="{{ field.id_for_label }}" class="col-sm-2 control-label">{{ field.label }}{% if field.field.required %} *{% endif %}</label>
{{ field.errors }}
<div class="col-sm-10">
  {{ field }}
  {% if field.help_text %}
    <span class="help_text">{{ field.help_text|safe }}</span>
  {% endif %}
</div>