{% extends "onboarding_base.html" %} {% load i18n %} {% block title %}TAMIS — Register{% endblock %} {% block nav_join %}active{% endblock %} {% block content %}
{% csrf_token %} {% if form.non_field_errors %} {% endif %}
{% trans "Organisation" %}
{{ form.organization_legal_name }} {{ form.organization_legal_name.errors }}
{{ form.organization_registration_number }} {{ form.organization_registration_number.errors }}
{{ form.organization_registration_scheme }} {{ form.organization_registration_scheme.errors }}
{{ form.organization_vat_number }} {{ form.organization_vat_number.errors }}
{{ form.organization_vat_country_code }} {{ form.organization_vat_country_code.errors }}
{{ form.organization_legal_form }} {{ form.organization_legal_form.errors }}
{{ form.organization_website }} {{ form.organization_website.errors }}
{{ form.organization_logo }} {{ form.organization_logo.errors }}
{% trans "Legal address" %}
{{ form.organization_address_street }} {{ form.organization_address_street.errors }}
{{ form.organization_address_postal_code }} {{ form.organization_address_postal_code.errors }}
{{ form.organization_address_locality }} {{ form.organization_address_locality.errors }}
{{ form.organization_address_country_code }} {{ form.organization_address_country_code.errors }}
* {% trans "Sectoral qualification" %}
{% for choice in form.participant_types %} {% endfor %}
{{ form.participant_types.errors }}
{% trans "Main contact" %}
{{ form.contact_general_first_name }} {{ form.contact_general_first_name.errors }}
{{ form.contact_general_last_name }} {{ form.contact_general_last_name.errors }}
{{ form.contact_general_email }} {{ form.contact_general_email.errors }}
{{ form.contact_general_phone }} {{ form.contact_general_phone.errors }}
{{ form.contact_general_job_title }} {{ form.contact_general_job_title.errors }}
{{ form.contact_general_address }} {{ form.contact_general_address.errors }}
{% trans "Billing contact" %}
{{ form.contact_billing_first_name }} {{ form.contact_billing_first_name.errors }}
{{ form.contact_billing_last_name }} {{ form.contact_billing_last_name.errors }}
{{ form.contact_billing_email }} {{ form.contact_billing_email.errors }}
{{ form.contact_billing_phone }} {{ form.contact_billing_phone.errors }}
{{ form.contact_billing_job_title }} {{ form.contact_billing_job_title.errors }}
{{ form.contact_billing_address }} {{ form.contact_billing_address.errors }}
{% endblock %}