{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Provisional Accounts" %}{% endblock %} {% block content %}
{% trans "View accounts pending activation" %}
| {% trans "Name" %} | {% trans "Email" %} | {% trans "Department" %} | {% trans "Invited" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|
|
{{ account.first_name|first }}{{ account.last_name|first }}
{{ account.get_full_name }}
|
{{ account.email }}
|
{{ account.department|default:"-" }} | {{ account.invited_at|date:"M d, Y" }} | {% if account.is_active %} Active {% elif account.activation_expires %} {% if account.activation_expires < now %} Expired {% else %} Pending {% endif %} {% else %} Inactive {% endif %} |
{% trans "There are no accounts pending activation" %}
{% trans "Send Invitations" %}