{%- for profile in profile_list %} {#- Wrap everything in a label tag so clicking anywhere selects the option #}
{{ profile.display_name }}
{%- if profile.description %}
{{ profile.description }}
{%- endif %} {%- if profile.profile_options %}
{%- for k, option in profile.profile_options.items() %}
{{ option.display_name }}
{%- for k, choice in option['choices'].items() %}
{{ choice.display_name }}
{%- endfor %} {%- if option['unlisted_choice']['enabled'] %}
{{ option['unlisted_choice']['display_name_in_choices'] }}
{%- endif %}
{%- if option['unlisted_choice']['enabled'] %}
{{ option['unlisted_choice']['display_name'] }}
{%- endif %}
{%- endfor %}
{%- endif %}
{%- endfor %}