{% extends "onboarding/admin/base.html" %} {% block title %}{{ application.legal_name|default:application.contact_general_email }} - TAMIS operators{% endblock %} {% block admin_main %}

{{ application.legal_name|default:application.contact_general_email }}

{{ application.get_overall_status_cached_display }}
Back to list
{% for s in sections %}

{{ s.get_key_display }}

{{ s.get_status_display }}
{% if s.key == "legal_identity" %}
Legal name
{{ application.legal_name }}
Legal form
{{ application.legal_form }}
Enterprise code
{{ application.enterprise_code }}
Website
{{ application.website }}
Legal address
{{ application.address_street }}
{{ application.address_postal_code }} {{ application.address_city }}
{{ application.address_country_code }}
{% elif s.key == "qualification" %}
Participant types
{{ application.participant_types_display|join:", " }}
{% elif s.key == "contacts" %}
General
{{ application.contact_general_name }} ({{ application.contact_general_role }}) <{{ application.contact_general_email }}>
Billing
{{ application.contact_billing_name }} ({{ application.contact_billing_role }}) <{{ application.contact_billing_email }}>
{% elif s.key == "documents" %} {% for a in attachments %}
{{ a.get_kind_display }}
{{ a.original_filename }}
{% empty %}
-
No documents uploaded.
{% endfor %} {% elif s.key == "review" %}
T&C accepted
{{ application.optin_register|yesno:"Yes,No" }}
{% endif %}
{% if application.overall_status_cached != "approved" and application.overall_status_cached != "rejected" and application.overall_status_cached != "cancelled" and s.status != "approved" %}
{% csrf_token %}
{% csrf_token %}
{% endif %}
{% endfor %}
{% endblock %}