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
279 B
HTML
13 lines
279 B
HTML
{% load pyconau2017_tags %}
|
|
{% 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>
|
|
|
|
{% include "forms/render.html" with form=form %}
|