{% extends "base.html" %} {% load static %} {% block title %}Users ยท {{ site_title }}{% endblock %} {% block content %}
{% if messages %} {% endif %}

Users

{% comment %} Our current invite-system is tied to either a team or a project; no "global" invites (yet). {% endcomment %}
{% csrf_token %} {% for user in users %} {% endfor %} {#% empty %} not needed, a site without users cannot be visited by a user #}
Users
{{ user.username }} {# "best name" perhaps later? #} {# Invitation pending #} {# perhaps useful for "not active"? #} {% if member.is_superuser %} Superuser {% endif %}
{% if not request.user == user %} {% if user.is_active %} {% else %} {% endif %} {% endif %}
{% comment %}
Back to Xxxx {# perhaps once this is part of some other flow #}
{% endcomment %}
{% endblock %} {% block extra_js %} {% endblock %}