Files @ 1759a07630a8
Branch filter:

Location: symposion_app/pinaxcon/templates/forms/widget_boolean_multiple.html

Nick Seidenman (N6)
A few mods to be able to use the runserver site for debugging. We'll back these out once the real
(via apache) site is up and running.
<h4>
  {{ field.label }}
  {% if field.field.required %}
    (*)
  {% endif %}
</h4>
<ul class="form-field boolean-group">
  {% for item in field %}
    {% if True or widget == "CheckboxSelectMultiple" %}
      <li>
    {% else %}
      <!-- This is broken for everything. Going to need to look at Django. -->
      <li class="boolean-group--row">
    {% endif %}
      {{ item }}
      <label for="{{ item.id_for_label }}"><strong>{{ item.label }}</strong></label>
    </li>
  {% endfor %}
</ul>
{{ field.errors }}