{% extends "base.html" %} {% block title %}User Management – MoE Admin{% endblock %} {% block flash %} {% if flash %}
{{ flash }}
{% endif %} {% endblock %} {% block content %}
{{ t(request, 'page.users') }}
Registrierte User {{ users|length }} {{ t(request, 'lbl.total') }}
{% for u in users %} {% else %} {% endfor %}
{{ t(request, 'table.username') }} {{ t(request, 'table.email') }} {{ t(request, 'table.budget') }} {{ t(request, 'table.created') }} {{ t(request, 'table.status') }} {{ t(request, 'table.actions') }}
{{ u.username }} {% if u.display_name %}
{{ u.display_name }}{% endif %} {% if u.role == 'admin' %}Admin {% elif u.role == 'expert' %}Experte {% elif u.role == 'subscriber' %}Abonent {% elif u.is_admin %}Admin{% endif %}
{{ u.email }} {% if u.daily_limit %}{{ "{:,}".format(u.daily_limit) }}{% else %}∞{% endif %} / {% if u.monthly_limit %}{{ "{:,}".format(u.monthly_limit) }}{% else %}∞{% endif %} / {% if u.total_limit %}{{ "{:,}".format(u.total_limit) }}{% else %}∞{% endif %} {{ u.created_at[:10] }} {% if u.is_active %} {{ t(request, 'status.active') }} {% else %} {{ t(request, 'status.locked') }} {% endif %} {% if u.is_active %} {% else %} {% endif %}
{{ t(request, 'empty.no_users') }}
{% endblock %} {% block scripts %} {% endblock %}