{% extends "base.html" %} {% block title %}Users - PyRunner{% endblock %} {% block content %}
{% include "cpanel/_sidebar.html" %}

Users

{% if last_invite_url %}

Invite created for {{ last_invite_email }}

Share this link with the user. It expires in 7 days.

{% endif %}

Open Registration

{% if allow_registration %} Anyone can create an account by entering their email. {% else %} Only invited users can create accounts. {% endif %}

{% csrf_token %}
{% if pending_invites %}

Pending Invites

{% for invite in pending_invites %}

{{ invite.email }}

Invited {{ invite.created_at|timesince }} ago by {{ invite.created_by.email }} • Expires {{ invite.expires_at|timeuntil }}

{% csrf_token %}
{% endfor %}
{% endif %}

All Users

{% for user in users %}
{{ user.email|first|upper }}

{{ user.email }}

{% if user.is_superuser %} Admin {% endif %} {% if user.is_verified %} Verified {% else %} Pending {% endif %}

Joined {{ user.date_joined|timesince }} ago {% if user.last_login %} • Last login {{ user.last_login|timesince }} ago {% endif %}

{% if user.pk != request.user.pk %}
{% csrf_token %}
{% else %} (You) {% endif %}
{% endfor %}
{% endblock %}