{% extends "registration-admin/base.html" %} {% load i18n %} {% block title %}TAMIS — Onboarding dashboard{% endblock %} {% block content %}

{% trans "Onboarding requests" %}

{% trans "Review pending applications and approve or deny each one." %}

{% if participants %}
{% for p in participants %} {% endfor %}
{% trans "Submitted" %} {% trans "Organisation" %} {% trans "Requester" %} {% trans "Types" %} {% trans "Status" %} {% trans "Actions" %}
{{ p.creation_date|date:"Y-m-d H:i" }} {{ p.organization_legal_name }} {{ p.contact_general_first_name }} {{ p.contact_general_last_name }}
{{ p.contact_general_email }}
{% for t in p.participant_types_display %}{{ t }}{% if not forloop.last %}, {% endif %}{% endfor %} {{ p.get_status_display }} {% if p.status == "pending" %} {% trans "Approve" %} {% trans "Deny" %} {% elif p.status == "processing" %} {% trans "Deny" %} {% else %} {% endif %}
{% else %}
{% trans "No onboarding requests yet." %}
{% endif %} {% endblock %}