{% extends "base.html" %} {% block title %}User Manager{% endblock %} {% block content %}
Name | {{ user.full_name }} | |
Organization | {{ user.organization }} | |
Confirmed | {% if user.confirmed_at %}{{ timeago(user.confirmed_at + "Z") }} | {% else %}Unconfirmed | {% endif %}
Superuser | {% if user.superuser %}Made a superuser {{ timeago(user.superuser_info['timestamp'] + "Z") }} by {{ user.crowner.name_and_org }}. | {% else %}Make Superuser | {% endif %}
Most recent login | {% if user.most_recent_login %}{{ timeago(user.most_recent_login.timestamp.isoformat() + "Z") }} from {{ user.most_recent_login.ip_address }} | {% else %}Never | {% endif %}
Become this user for debugging |