{%- 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 %}
{%- endfor %}
{%- endif %}
{%- endfor %}