{% extends 'root/base.html' %} {% load static %} {% block title %} Register a new Supplier {% endblock %} {% block maincontent %}

Supplier Registration

{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% csrf_token %} {% if supplier_form.errors %}
{% for field in supplier_form %} {% if field.errors %} {{ field.label }}: {{ field.errors|striptags }}
{% endif %} {% endfor %}
{% endif %}
Basic Data

{{ supplier_form.supplier_id }}

{{ supplier_form.supp_type }}

{{ supplier_form.registration_number }}

{{ supplier_form.name1 }}

{{ supplier_form.name2 }}

{{ supplier_form.currency_id }}

{{ supplier_form.language_id }}

{{ supplier_form.country_code }}

{{ supplier_form.city }}

{{ supplier_form.street }}

{{ supplier_form.postal_code }}

{{ supplier_form.supplier_image }}

Contact information

{{ supplier_form.email }}

{{ supplier_form.landline }}

{{ supplier_form.mobile_num }}

{{ supplier_form.fax }}

Extended data

{{ supplier_form.search_term1 }}

{{ supplier_form.search_term2 }}


{{ supplier_form.duns_number }}
{{ supplier_form.output_medium }}

Additional Contact
{{ supplier_form.email2 }}
{{ supplier_form.email3 }}
{{ supplier_form.email4 }}
{{ supplier_form.email5 }}

 
{% endblock %}