{% extends 'dashboard/me.html' %} {% load static i18n %} {% block head_title %}{% trans "Partner Information" %}{% endblock%} {% block header %}{% endblock header %} {% block profile_content %}

{% trans "Partner Information" %}

{% trans "Please provide your valid partner profile, This information will appear in several documents ex: Invoice and Bill." %}

{% for field in partner_form %}
{% render_field field class="form-control" %} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}

{% trans "Contacts and Addresses" %}

{% for field in address_form %}
{% render_field field class="form-control" %} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% if confirmation_form.confirm.help_text %}
{{ confirmation_form.confirm.help_text }}
{% endif %} {% if confirmation_form.confirm.errors %}
{{ confirmation_form.confirm.errors }}
{% endif %}
{% endblock %}