symposion_app/pinaxcon/templates/forms/widget_boolean_multiple.html
Christopher Neugebauer 40a4df3767 Fixes for 20160718 (#54)
* 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
2016-07-20 07:31:13 +10:00

11 lines
330 B
HTML

<h4><label for="{{ field.id_for_label }}">{{ field.label }}</label></h4>
<ul class="form-field boolean-group">
{% for item in field %}
LA
<li class="boolean-group--row">
{{ item }}
<label for="{{ item.id_for_label }}"><strong>{{ item.label }}</strong></label>
</li>
{% endfor %}
</ul>
{{ field.errors }}