{% for fieldset in fieldsets %}

{{ fieldset.title }}
    {% for field in fieldset.fields %} {% if field.type == "country" %} {% include "shared/forms/_country.html" %} {% else %}
  • {% if field.type == "text" or field.type == "tel" or field.type == "email" %} {% elif field.type == "long-text" %} {% elif field.type == "radio" %} {% elif field.type == "checkbox" %} {% elif field.fieldTitle is defined and field.fieldTitle|length > 0 %}
    {{ field.fieldTitle }} {% for option in field.options %} {% endfor %}
    {% elif field.type == "select" %} {% endif %}
  • {% endif %} {% endfor %}
{% if loop.index == fieldsets|length %}
  • By submitting this form, I confirm that I have read and agree to Canonical's Privacy Notice and Privacy Policy.
  • {# These are honey pot fields to catch bots #}
  • {# End of honey pots #}
{% endif %}
{% endfor %}