{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Provisional Accounts" %}{% endblock %} {% block content %}
{% trans "Back to Dashboard" %}

{% trans "Provisional Accounts" %}

{% trans "View accounts pending activation" %}

{% if provisional_accounts %}
{% for account in provisional_accounts %} {% endfor %}
{% 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 %}
{% else %}

{% trans "All Accounts Activated" %}

{% trans "There are no pending provisional accounts" %}

{% endif %}
{% endblock %}