{% load static %} {% include 'dashboard/gate_keeper_dashboard/header.html' %} {% include 'dashboard/gate_keeper_dashboard/body.html' %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Profile Edit Control panel

{% csrf_token %}
{% if gate_keeper_user.image %} Visitor Image {% else %} Default Image {% endif %}


{% if gate_keeper_user.document %} {% with file_extension=gate_keeper_user.document.name|slice:'-4:' %} {% if file_extension == '.pdf' %}

Uploaded Document: {{ gate_keeper_user.document.name }}

{% elif file_extension in '.jpg .png .jpeg' %}

Uploaded Image: Uploaded Image
{{ gate_keeper_user.document.name }}

{% else %}

Uploaded Document: {{ admin_user.document.name }}

{% endif %} {% endwith %} {% else %}

No document uploaded.

{% endif %}
{% include 'dashboard/visitors_dashboard/footer.html' %}