{% 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 "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 %}
{% else %}

{% trans "No Provisional Accounts" %}

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

{% trans "Send Invitations" %}
{% endif %}
{% endblock %}