{% extends "registration-admin/base.html" %} {% load static %} {% block title %}GLCDI Admin - Data space participants{% endblock %} {% block content %}

Data space participants

{% for p in participants %} {% empty %} {% endfor %}
Organization Primary contact Email Organization type Submitted Status Actions
{% if p.organization_logo %} {% else %} {{ p.organization|truncatechars:2 }} {% endif %} {{ p.organization }}
{{ p.firstname }} {{ p.lastname }} {{ p.email }} {% for label in p.organization_type_display %} {{ label }} {% empty %} N/A {% endfor %} {{ p.created_at|date:"M d, Y H:i" }} {% if p.status == "pending" %}Pending {% elif p.status == "processing" %}Processing {% elif p.status == "approved" %}Accepted {% elif p.status == "rejected" %}Denied {% endif %}
No participants registered yet.
{% endblock %} {% block extra_js %} {% endblock %}