{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Users" %}{% endblock %} {% block content %}
{% include 'sidebar.html' %}

{% trans "Accounts" %}

{% include 'errors_block.html' %} {% for user in users %}

{{ user.username }}

Status: {% if user.is_active %}Active{% else %}Blocked{% endif %}

{% endfor %}
{% endblock %}