{% extends "base.html" %} {% load i18n %} {% load static %} {% load common_tags %} {% load bootstrap_icons %} {% block title %}{{ title }}{% endblock %} {% block page_heading %}{{ title }}{% endblock page_heading %} {% block page_heading_extra %} {% bs_icon 'plus-circle-fill' %} {% include 'search_block.html' %} {% endblock page_heading_extra %} {% block content %}
{% trans "Username" %} | {% trans "Status" %} | {% trans "Last Login" %} | {% trans "Staff" %} | {% trans "Superuser" %} | {% trans "Can Clone" %} | {% trans "Actions" %} |
---|---|---|---|---|---|---|
{{ user.username }} | {% if user.is_active %} {% trans "Active" %} {% else %} {% trans "Blocked" %} {% endif %} | {{ user.last_login }} | {% if user.is_staff %}{% bs_icon 'check' %}{% endif %} | {% if user.is_superuser %}{% bs_icon 'check' %}{% endif %} | {% if can_clone %}{% bs_icon 'check' %}{% endif %} |
{% bs_icon 'eye-fill' %}
{% bs_icon 'pencil-fill' %}
{% if user.is_active %}
{% bs_icon 'stop-fill' %}
{% else %}
{% bs_icon 'play-fill' %}
{% endif %}
{% bs_icon 'x-circle-fill' %}
|