{% extends "base.html" %} {% set colors = ['blue', 'green', 'orange', 'teal', 'red', 'purple', 'maroon'] %} {% block title %}Pick a profile{% endblock %} {% block subtitle %}for the service {{ service.name }}{% endblock %} {% block content %}
{% for profile in profiles %}
{{ form.hidden_tag() }}

{{ profile.username }}

{{ profile.comment or "No profile description" }} 
{% endfor %} {% endblock %}