Files @ c6314ae230da
Branch filter:

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

Sachi King
DJ 1.11 support has improved upstream

We can now force to released versions with 1.11 support.
<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 }}