{% 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 %} {% set status = profile.STATUSES[profile.status] %} {% 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.username }} -{{ profile.uuid }} {{ status[1] }} {{ profile.created_at.date() }} {% if profile.status == "active" %} {% trans %}Block profile{% endtrans %} {% elif profile.status == "blocked" %} {% trans %}Unblock profile{% endtrans %} {% elif profile.status == "request" %} {% trans %}Validate profile{% endtrans %} {% elif profile.status == "unclaimed" %} {% trans %}Assign profile{% endtrans %} {% endif %}
{% endblock %} {% block actions %} {% if service %} {% trans %}Export unclaimed profiles{% endtrans %} {% trans %}Create profile{% endtrans %} {% endif %} {% endblock %}