{% extends "base.html" %} {% block title %} {{ service.name }} {% endblock %} {% block subtitle %}{% trans %}profile list{% endtrans %}{% endblock %} {% block content %}
{% if not service %} {% endif %} {% for profile in profiles %} {% if not service %} {% endif %} {% if profile.user_uuid %} {% else %} {% endif %} {% endfor %}
{% trans %}Service{% endtrans %}{% trans %}Profile username{% endtrans %} {% trans %}Owned by{% endtrans %} {% trans %}UUID{% endtrans %} {% trans %}Status{% endtrans %} {% trans %}Created on{% endtrans %} {% trans %}Actions{% endtrans %}
{{ profile.service.name }}{{ profile.username }}{{ profile.user.username }}-{{ profile.uuid }} {{ macros.profile_status(profile) }} {{ profile.created_at.date() }} {% for action in profile.actions %} {{ action.label | capitalize }} {% endfor %}
{% endblock %} {% block actions %} {% trans %}Export unclaimed profiles{% endtrans %} {% trans %}Create profile{% endtrans %} {% endblock %}