Files @ c6314ae230da
Branch filter:

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

Sachi King
DJ 1.11 support has improved upstream

We can now force to released versions with 1.11 support.
{% load pyconau2017_tags %}

{% classname field.field.widget as widget %}
{% if widget == "CheckboxInput" %}
  {% include "forms/widget_boolean_single.html" %}
{% elif widget == "RadioSelect" or widget == "CheckboxSelectMultiple" %}
  {% include "forms/widget_boolean_multiple.html" %}
{% elif widget == "Select" or widget == "SelectMultiple" or widget == "LazySelect" or widget == "CountrySelectWidget" %}
  {% include "forms/widget_basic.html" with widget_class="select" %}
{% else %}
  {% include "forms/widget_basic.html" %}
{% endif %}