{% extends "profiles/base.html" %} {% load i18n avatar_tags %} {% block breadcrumb %} {% endblock %} {% block content %}

Edit {{ profile.user.username }}'s profile

{% trans "Your current avatar: " %}

{% avatar user %} {% if not avatars %}

{% trans "You haven't uploaded an avatar yet. Please upload one now." %}

{% else %}

{% csrf_token %}

{% endif %}
{{ upload_avatar_form.as_p }}

{% csrf_token %}

{% if USE_CUSTOM_ORG_AUTHORIZATION %}
{% if not is_org_user %}

{% trans "Are you affiliated with " %}{{ CUSTOM_GROUP_NAME }}? {% trans "Click here to confirm" %}

{% endif %} {% if is_org_user %} {% if is_org_current %}

{% trans "Your affiliation with " %}{{ CUSTOM_GROUP_NAME }}{% trans " expires on " %}{{ org_expiration_dt }} {% else %} {% trans "Your affiliation with " %}{{ CUSTOM_GROUP_NAME }}{% trans " expired on " %}{{ org_expiration_dt }} {% endif %} : {% trans "Click here to renew" %}

{% endif %}
{% endif %}
{% csrf_token %}
{% endblock %}