{% extends "base.html" %} {% block title %}{% trans %}Profile list{% endtrans %}{% endblock %} {% block subtitle %}{% if service %}{{ service.name }}{% endif %}{% endblock %} {% block content %}
{% for profile in profiles %} {% endfor %}
{% trans %}Service{% endtrans %} {% trans %}User{% endtrans %} {% trans %}Identity{% endtrans %} {% trans %}Created on{% endtrans %}
{{ profile.service.name }} {{ profile.user.username }} {{ profile.username }} {{ profile.created_on }}
{% endblock %} {% block actions %} {% if service %} {% trans %}Create a profile{% endtrans %} {% endif %} {% endblock %}