{% extends "registration-admin/base.html" %}
{% load i18n %}
{% block title %}TAMIS — Onboarding dashboard{% endblock %}
{% block content %}
{% trans "Review pending applications and approve or deny each one." %}{% trans "Onboarding requests" %}
| {% 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 %} |