1886323d74
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.
13 lines
362 B
HTML
13 lines
362 B
HTML
<h3>
|
|
{{ field.label }}{% if field.field.required %} *{% endif %}
|
|
{{ field.errors }}
|
|
</h3>
|
|
<div class="col-sm-offset-2 col-sm-10">
|
|
<label class="form-check-label" for="id_profile-past_lca_0">
|
|
{{ field }}
|
|
<p>Sign me up</p>
|
|
{% if field.help_text %}
|
|
<span class="help_text">{{ field.help_text|safe }}</span>
|
|
{% endif %}
|
|
</label>
|
|
</div>
|