{% 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 %} {{form|crispy}}
{% endblock %} {% block customJS %} {% endblock %}