File diff c6314ae230da → 1886323d7431
pinaxcon/templates/django/forms/widgets/radio_option.html
Show inline comments
 
new file 100644
 
{% if wrap_label %}<label class="form-check-label"{% if widget.attrs.id %} for="{{ widget.attrs.id }}"{% endif %}>{% endif %}
 
  <input class="form-check-input" type="{{ widget.type }}" name="{{ widget.name }}"{% if widget.value != None %} value="{{ widget.value }}"{% endif %}{% include "django/forms/widgets/attrs.html" %} />
 
{% if wrap_label %} {{ widget.label }}</label>{% endif %}