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

{% if action == "approve" %}{% trans "Approve registration" %}{% else %}{% trans "Deny registration" %}{% endif %}

{{ participant.organization_name }}

{% trans "Organisation" %}
{{ participant.organization_name }}
{% trans "Requester" %}
{{ participant.firstname }} {{ participant.lastname }} <{{ participant.email }}>
{% trans "Phone" %}
{{ participant.phone|default:"—" }}
{% trans "Job" %}
{{ participant.job|default:"—" }}
{% trans "Title" %}
{{ participant.title|default:"—" }}
{% trans "Address" %}
{{ participant.organization_address|default:"—" }}
{% trans "Reg. number" %}
{{ participant.organization_registration_number|default:"—" }}
{% trans "Types" %}
{% for t in participant.participant_types_display %}{{ t }}{% if not forloop.last %}, {% endif %}{% endfor %}
{% trans "Submitted" %}
{{ participant.creation_date|date:"Y-m-d H:i" }}
{% trans "Status" %}
{{ participant.get_status_display }}
{% csrf_token %} {% if action == "deny" %} {% endif %}
{% if action == "approve" %} {% else %} {% endif %} {% trans "Cancel" %}
{% endblock %}