{% load widget_tweaks %} {% load i18n %}
{{ form.verbose_name }}
{{form.non_field_errors}}
{% for field in form.visible_fields %}
{% if field.help_text != "" %} {% endif %}
{% if field.field.widget.input_type == "checkbox" %}
{{ field|add_class:"oh-switch__checkbox" }}
{% else %} {{ field|add_class:"form-control" }} {% endif %} {{field.errors}}
{% endfor %}