{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Users" %}{% endblock %} {% block content %}
Username | Status | Staff | Superuser | Clone |
---|---|---|---|---|
{{ user.username }} | {% if user.is_active %} {% trans "Active" %} {% else %} {% trans "Blocked" %} {% endif %} | {% if user.is_staff %}{% endif %} | {% if user.is_superuser %}{% endif %} | {% if user.userattributes.can_clone_instances %}{% endif %} |