{% 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_legal_name }}

{% trans "Organisation" %}

{% trans "Legal name" %}
{{ participant.organization_legal_name }}
{% trans "Registration number" %}
{{ participant.organization_registration_number }}
{% trans "Registration scheme" %}
{{ participant.organization_registration_scheme }}
{% trans "VAT number" %}
{{ participant.organization_vat_number }} ({{ participant.organization_vat_country_code }})
{% trans "Legal form" %}
{{ participant.organization_legal_form }}
{% trans "Website" %}
{{ participant.organization_website }}
{% trans "Sectoral roles" %}
{% for t in participant.participant_types_display %}{{ t }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% trans "Legal address" %}

{% trans "Street" %}
{{ participant.organization_address_street }}
{% trans "Postal code" %}
{{ participant.organization_address_postal_code }}
{% trans "Locality" %}
{{ participant.organization_address_locality }}
{% trans "Country" %}
{{ participant.organization_address_country_code }}

{% trans "Main contact" %}

{% trans "Name" %}
{{ participant.contact_general_first_name }} {{ participant.contact_general_last_name }}
{% trans "Email" %}
{{ participant.contact_general_email }}
{% trans "Phone" %}
{{ participant.contact_general_phone|default:"—" }}
{% trans "Job title" %}
{{ participant.contact_general_job_title|default:"—" }}
{% trans "Address" %}
{{ participant.contact_general_address|default:"—" }}

{% trans "Billing contact" %} {% if participant.contact_billing_same_as_general %} ({% trans "same as main contact" %}) {% endif %}

{% trans "Name" %}
{{ participant.contact_billing_first_name }} {{ participant.contact_billing_last_name }}
{% trans "Email" %}
{{ participant.contact_billing_email }}
{% trans "Phone" %}
{{ participant.contact_billing_phone|default:"—" }}
{% trans "Job title" %}
{{ participant.contact_billing_job_title|default:"—" }}
{% trans "Address" %}
{{ participant.contact_billing_address|default:"—" }}

{% trans "Lifecycle" %}

{% 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 %}