{% extends "base.html" %} {% block title %} {% if service %} {{ service.name }} {% elif status %} {{ status[1] | capitalize }} {% trans %}profiles{% endtrans %} {% else %} All profiles {% endif %} {% endblock %} {% block subtitle %}profile list{% 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 %} {% if service %} {% trans %}Export unclaimed profiles{% endtrans %} {% trans %}Create profile{% endtrans %} {% endif %} {% endblock %}