{% extends "dashboard/base.html" %} {% load static %} {% load i18n %} {% load crispy_forms_tags %} {% load arrowfilter %} {% block title-page %}{{ profile.username}} | {% trans "Profile" %}{% endblock %} {% block content %}
{% trans "Username" %}: {{ profile.username }}
{% trans "Organization ID" %}: {{ profile.profile.org_id|default:"-" }}
{% trans "First name" %}: {{ profile.first_name|default:"-" }}
{% trans "Last name" %}: {{ profile.last_name|default:"-" }}
{% if perm_email %} {% trans "Email address" %}: {{ profile.email }} {% endif %}
IAC-TOKEN: {% if profile.is_superuser %} {{ iac_token }} {% else %} for admin users only {% endif %}
{% trans "Last login" %}: {{ profile.last_login|arrowfilter:LANGUAGE_CODE}}
{% if request.user == profile %}{% trans "Use email address as Gravatar profile image" %}: {% trans "What's Gravatar?" %}
{% trans "Change my preferences" %} {% endif %}