{% extends "base.html" %} {% load static i18n crispy_forms_tags %} {% block title %}Update {{ person.get_full_name }} - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{% trans "Currently Editing" %}
{% if person.profile_image %} {{ person.get_full_name }} {% else %}
{% endif %}
{{ person.get_full_name }}
{% if person.email %}

{{ person.email }}

{% endif %} {% trans "Created" %}: {{ person.created_at|date:"d M Y" }} • {% trans "Last Updated" %}: {{ person.updated_at|date:"d M Y" }}
{% if form.non_field_errors %} {% endif %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{% if person.profile_image %} Current Profile
{% trans "Click to change photo" %}

{% trans "Current photo will be replaced" %}

{% else %}
{% trans "Upload Profile Photo" %}

{% trans "Click to browse or drag and drop" %}

{% endif %}
{% if person.profile_image %}
{% trans "Leave empty to keep current photo" %}
{% endif %}
{% trans "Personal Information" %}
{{ form.first_name|as_crispy_field }}
{{ form.middle_name|as_crispy_field }}
{{ form.last_name|as_crispy_field }}
{% trans "Contact Information" %}
{{ form.email|as_crispy_field }}
{{ form.phone|as_crispy_field }}
{% trans "Additional Information" %}
{{ form.date_of_birth|as_crispy_field }}
{{ form.nationality|as_crispy_field }}
{{ form.gender|as_crispy_field }}
{% trans "Address Information" %}
{{ form.address|as_crispy_field }}
{% trans "Professional Profile" %}
{% trans "Optional: Add LinkedIn profile URL" %}
{% endblock %} {% block customJS %} {% endblock %}