2017-01-10 04:12:07 +00:00
|
|
|
{% load pyconau2017_tags %}
|
2017-04-24 06:31:13 +00:00
|
|
|
{% load bootstrap %}
|
|
|
|
|
2017-04-24 13:10:51 +00:00
|
|
|
{% block extra_style %}
|
|
|
|
<style type="text/css">
|
|
|
|
.label-required:after { content: ' *'; }
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-07-09 13:14:31 +00:00
|
|
|
{% if form.non_field_errors %}
|
2016-09-30 10:46:05 +00:00
|
|
|
<div class="has-errors">
|
|
|
|
{{ form.non_field_errors }}
|
|
|
|
</div>
|
2016-07-09 13:14:31 +00:00
|
|
|
<br/>
|
|
|
|
{% endif %}
|
|
|
|
|
2017-04-16 06:01:57 +00:00
|
|
|
<blockquote>
|
|
|
|
Fields marked with <strong>*</strong> are required.
|
|
|
|
</blockquote>
|
2016-08-03 23:59:50 +00:00
|
|
|
|
2017-04-24 06:31:13 +00:00
|
|
|
{{ form|bootstrap_horizontal }}
|