{% extends "authentic2/manager/form.html" %} {% load i18n staticfiles %} {% block bodyclasses %}{{ block.super }} with-actions{% endblock %} {% block appbar %} {{ block.super }} {% if view.can_delete %} {% trans "Delete" %} {% else %} {% trans "Delete" %} {% endif %} {% if view.can_change %} {% trans "Edit" %} {% else %} {% trans "Edit" %} {% endif %} {% endblock %} {% block breadcrumb %} {{ block.super }} {% trans 'Users' %} {% if multiple_ou and object.ou %} {{ object.ou }} {% endif %} {{ object.get_full_name }} {% endblock %} {% block afterform %} {% if object.passwordreset_set.exists %}
{% trans "User must change its password on next access to authentic" %}
{% endif %} {% endblock %} {% block buttons %} {% endblock %} {% block other_actions %}

{% if object.last_login %} {% blocktrans with date=object.last_login %}Last login on {{ date }}.{% endblocktrans %} {% else %} {% trans "Never logged in." %} {% endif %}

{% blocktrans with date=object.date_joined %}Created on {{ date }}{% endblocktrans %}

{% if object.date_joined != object.modified %}

{% blocktrans with date=object.modified %}Modified on {{ date }}{% endblocktrans %}

{% endif %} {% for data in user_data %} {{ data }} {% endfor %} {{ block.super }} {% if roles_by_ou or can_change_roles %}
{% trans "Roles" %} {% if can_change_roles %} {% endif %}
{% endif %} {% endblock %}