40a4df3767
* Simple form input fields now use TakeFlight styling * Styles the form widgets as per the styles in our CSS * Styling of TextArea now matches the remaining input types * Adds is_last modifier to navigation dropdown * Adds admin for talk, tutorial, and miniconf proposals * Adds an RSS feed * Adds a link to the RSS page * Unbreaks the old news index page * Adds never_cache to the login page, removes the never cache middleware from the settings
20 lines
404 B
HTML
20 lines
404 B
HTML
{% if form.non_field_errors %}
|
|
{{ form.non_field_errors }}
|
|
<br/>
|
|
{% endif %}
|
|
|
|
{% for field in form %}
|
|
{% if not field.is_hidden %}
|
|
<div class="fieldWrapper">
|
|
<div>
|
|
{% include "forms/widget.html" %}
|
|
</div>
|
|
|
|
{% if field.help_text %}
|
|
<span class="help_text">{{ field.help_text|safe }}</span>
|
|
{% endif %}
|
|
|
|
<p></p>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|