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
12 lines
438 B
HTML
12 lines
438 B
HTML
{% load lca2017_tags %}
|
|
|
|
{% classname field.field.widget as widget %}
|
|
{% if widget == "CheckboxInput" %}
|
|
{% include "forms/widget_boolean_single.html" %}
|
|
{% elif widget == "RadioSelect" %}
|
|
{% include "forms/widget_boolean_multiple.html" %}
|
|
{% elif widget == "Select" or widget == "SelectMultiple" %}
|
|
{% include "forms/widget_basic.html" with widget_class="select" %}
|
|
{% else %}
|
|
{% include "forms/widget_basic.html" %}
|
|
{% endif %}
|