{% 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 %} {{ field.label }} {% 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 %} {{ field.label }} {% render_field field class="form-control" %} {% if field.help_text %}{{ field.help_text }}{% endif %} {% if field.errors %}{{ field.errors }}{% endif %} {% endfor %} {% render_field confirmation_form.confirm %} {{ confirmation_form.confirm.label }} {% if confirmation_form.confirm.help_text %}{{ confirmation_form.confirm.help_text }}{% endif %} {% if confirmation_form.confirm.errors %}{{ confirmation_form.confirm.errors }}{% endif %} {% trans "Register" %} {% endblock %}
{% trans "Please provide your valid partner profile, This information will appear in several documents ex: Invoice and Bill." %}