{% extends "base.html" %} {% load i18n %} {% load static %} {% load font_awesome %} {% block title %}{% trans "Users" %}{% endblock %} {% block content %}
| {% trans "Username" %} | {% trans "Status" %} | {% trans "Staff" %} | {% trans "Superuser" %} | {% trans "Clone" %} | {% trans "" %} |
|---|---|---|---|---|---|
| {{ user.username }} | {% if user.is_active %} {% trans "Active" %} {% else %} {% trans "Blocked" %} {% endif %} | {% if user.is_staff %}{% icon 'check' %}{% endif %} | {% if user.is_superuser %}{% icon 'check' %}{% endif %} | {% if user.userattributes.can_clone_instances %}{% icon 'check' %}{% endif %} |
{% icon 'eye' %}
{% icon 'pencil' %}
{% if user.is_active %}
{% icon 'stop' %}
{% else %}
{% icon 'play' %}
{% endif %}
{% icon 'times' %}
|