{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Provisional Accounts" %}{% endblock %} {% block content %}
{% trans "View accounts pending activation" %}
| {% trans "User" %} | {% trans "Email" %} | {% trans "Role" %} | {% trans "Invited" %} | {% trans "Expires" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|
|
{{ account.first_name|first|default:"U" }}{{ account.last_name|first|default:"" }}
{{ account.get_full_name|default:account.email }}
|
{{ account.email }}
|
{% if account.groups.first %} {{ account.groups.first.name }} {% endif %} | {{ account.invited_at|date:"M d, Y" }} | {% if account.invitation_expires_at %} {% if account.invitation_expires_at < now %} {% trans "Expired" %} {% else %} {{ account.invitation_expires_at|date:"M d, Y" }} {% endif %} {% else %} - {% endif %} | {% if account.is_active %} {% trans "Active" %} elif account.invitation_expires_at and account.invitation_expires_at < now %} {% trans "Expired" %} {% else %} {% trans "Pending" %} {% endif %} |
|
{% trans "There are no pending provisional accounts" %}