{% extends "ishtar/wizard/default_wizard.html" %} {% load i18n range table_form %} {% block form_detail %} {% if form.non_field_errors %} {% endif %} {% for hidden in form.hidden_fields %} {{hidden}} {% if hidden.errors %}
{{ hidden.errors }}
{% endif %} {% endfor %}
{% trans "Identity" %}
{% bs_field wizard.form.surname 1 %} {% bs_field wizard.form.name 1 %} {% bs_field wizard.form.title %} {% bs_field wizard.form.salutation %} {% bs_field wizard.form.raw_name %} {% bs_field wizard.form.email %} {% bs_field wizard.form.attached_to %}
{% trans "Phone" %}
{% trans "Phone type" %} {% trans "Number" context "phone number" %}
{{ wizard.form.phone_desc.errors }}{{wizard.form.phone_desc|safe}} {{ wizard.form.phone.errors }}{{wizard.form.phone|safe}}
{{ wizard.form.phone_desc2.errors }}{{wizard.form.phone_desc2|safe}} {{ wizard.form.phone2.errors }}{{wizard.form.phone2|safe}}
{{ wizard.form.phone_desc3.errors }}{{wizard.form.phone_desc3|safe}} {{ wizard.form.phone3.errors }}{{wizard.form.phone3|safe}}
{% trans "Mobile phone" %} {{ wizard.form.mobile_phone.errors }}{{wizard.form.mobile_phone|safe}}
{% trans "Business address" %}
{% bs_field wizard.form.address %} {% bs_field wizard.form.address_complement %} {% bs_field wizard.form.postal_code %} {% bs_field wizard.form.town %} {% bs_field wizard.form.precise_town %} {% bs_field wizard.form.country %}
{% trans "Other address" %}
{% bs_field wizard.form.alt_address 0 'Address' %} {% bs_field wizard.form.alt_address_complement 0 'Address complement' %} {% bs_field wizard.form.alt_postal_code 0 'Postal code' %} {% bs_field wizard.form.alt_town 0 'Town' %} {% bs_field wizard.form.alt_country 0 'Country' %}
{% endblock %}