{% extends "custom_field.tpl.html" %} {% block field %}
{% for value in custom_field.VALUES %} {% block radio_display %} {% if custom_field.CHECKBOX == "yes" and custom_field.MULTIPLE == "no" %} {% for option in custom_field.OPTIONS %} {% endfor %} {% endif %} {% endblock %} {% block checkbox_display %} {% if custom_field.CHECKBOX == "yes" and custom_field.MULTIPLE == "yes" %} {% for option in custom_field.OPTIONS %} {% endfor %} {% endif %} {% endblock %} {% block authority_display %} {% if custom_field.AUTORITE == "yes" %} {% if custom_field.MULTIPLE == "yes" and loop.last %} {% endif %} {% endif %} {% endblock %} {% block select_display %} {% if custom_field.CHECKBOX == "no" and custom_field.AUTORITE == "no" %} {% endif %} {% endblock %} {% endfor %}
{% endblock %}