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

Data space members

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