{% load i18n standard_form %}
{% if input_type == 'radiocheck' %}
{% if not no_label %}{% endif %}
{% else %}
{% if not no_error_text %}{% for error in field.errors %}{{ error }} {% endfor %}{% endif %}
{% standard_widget field options custom_class=custom_class placeholder=placeholder input_type=input_type %}
{% if not no_help_text and field.help_text %}{{ field.help_text }} {% endif %}