ecabf31e54
* Invokes the site tree fix from previous fixes. * Adds a disclaimer noting that previous years’ accounts have not been carried over. Fixes #43 * Adds proposal type to the proposal summary page. Fixes #40 * Adds travel/accommodation assistance to the proposals page, but makes it only visible to speakers in the proposal, or review managers. Fixes #41. Fixes #42. * Reduces a lot of the whitespace in the header and footer. Fixes #44 * Proposals review page now shows information for every speaker on a proposal. Fixes #45 * Makes sure that non_field_errors are displayed by forms. Fixes #37
31 lines
798 B
HTML
31 lines
798 B
HTML
{% load lca2017_tags %}
|
|
|
|
{% if form.non_field_errors %}
|
|
{{ form.non_field_errors }}
|
|
<br/>
|
|
{% endif %}
|
|
|
|
{% for field in form %}
|
|
{% if not field.is_hidden %}
|
|
<div class="fieldWrapper">
|
|
<div>
|
|
{% classname field.field.widget as widget %}
|
|
{% if widget != "CheckboxInput" %}
|
|
<h4><label for="{{ field.id_for_label }}">{{ field.label }}</label></h4>
|
|
{{ field.errors }}
|
|
{{ field }}
|
|
{% else %}
|
|
<label for="{{ field.id_for_label }}"><strong>{{ field.label }}</strong></label>
|
|
{{ field }}
|
|
{{ field.errors }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if field.help_text %}
|
|
<span class="help_text">{{ field.help_text|safe }}</span>
|
|
{% endif %}
|
|
|
|
<p></p>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|