{% extends "base.html" %} {% block title %}{% trans %}Moderation{% endtrans %}{% endblock %} {% block content %}

{% trans %}Pending profiles{% endtrans %}

{% for profile in profiles %} {% if profile.user_uuid %} {% else %} {% endif %} {% endfor %}
{% trans %}Service{% endtrans %} {% trans %}Profile username{% endtrans %} {% trans %}Owned by{% endtrans %} {% trans %}Created on{% endtrans %} {% trans %}Status{% endtrans %} {% trans %}Actions{% endtrans %}
{{ profile.service.name }} {{ profile.username }}{{ profile.user.username }}-{{ profile.created_at.date() }} {{ macros.profile_status(profile) }} {% for action in profile.actions %} {{ action.label | capitalize }} {% endfor %}

{% trans %}Activity{% endtrans %}

{{ macros.timeline(events, public_only=False, show_user=True) }}
{% endblock %}