{% extends 'base.html' %} {% load static %} {% block content %}

Complete Consultant Profile

Fields marked with * are mandatory.
{% csrf_token %}
{% if form.passport_no.errors %} {% for error in form.passport_no.errors %}

{{ error }}

{% endfor %} {% endif %}
{% if form.date_of_birth.errors %} {% for error in form.date_of_birth.errors %}

{{ error }}

{% endfor %} {% endif %}
{{ form.experience_type }}
{{ form.vessel_type }}
{{ form.last_rank_sailed }}
{{ form.nationality }} {% if form.nationality.errors %} {% for error in form.nationality.errors %}

{{ error }}

{% endfor %} {% endif %}
{{ form.base_location_country }} {% if form.base_location_country.errors %} {% for error in form.base_location_country.errors %}

{{ error }}

{% endfor %} {% endif %}
{% if form.base_location_state.errors %} {% for error in form.base_location_state.errors %}

{{ error }}

{% endfor %} {% endif %}
{% if form.base_location_city.errors %} {% for error in form.base_location_city.errors %}

{{ error }}

{% endfor %} {% endif %}
{% if form.instance.photo %} Uploaded Photo {% endif %} {% if form.photo.errors %} {% for error in form.photo.errors %}

{{ error }}

{% endfor %} {% endif %}
{% if form.instance.curriculum_vitae %} Download CV {% endif %} {% if form.curriculum_vitae.errors %} {% for error in form.curriculum_vitae.errors %}

{{ error }}

{% endfor %} {% endif %}
{% for cert in certificates %} Download Certificate {{ forloop.counter }} {% endfor %}
{% if form.instance.photo %} {% endif %}
{% endblock %}