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

{{ object.email }}

{% endif %} {% trans "Created" %}: {{ object.created_at|date:"d M Y" }} • {% trans "Last Updated" %}: {{ object.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 %}