{% extends "base.html" %} {% block title %}Zarządzanie Użytkownikami - Norda Biznes Partner{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Zarządzaj kontami użytkowników platformy
| ID | Użytkownik | Firma | Upr. firmowe | Rola | Utworzono | Ostatnie logowanie | Status | Akcje |
|---|---|---|---|---|---|---|---|---|
| {{ user.id }} | {% if user.company %} {{ user.company.name }} {% else %} - {% endif %} | {% if user.company %} {% else %} - {% endif %} |
{{ user.created_at|local_time }}
{% if user.created_by_id and creators_map.get(user.created_by_id) %}
dodał: {{ creators_map[user.created_by_id] }} {% else %} samorejestracja {% endif %} |
{% if user.last_login %} {{ user.last_login|local_time }} {% else %} Nigdy {% endif %} | {% if user.locked_until and user.locked_until > now %} {% set remaining = (user.locked_until - now).total_seconds() %} Zablokowane ({{ (remaining / 60)|int }} min) {% elif user.failed_login_attempts and user.failed_login_attempts > 0 %} {{ user.failed_login_attempts }}x błędne hasło {% endif %} {% if user.can_manage_users() %} Admin {% endif %} {% if user.is_rada_member %} Rada {% endif %} {% if user.is_verified %} Zweryfikowany {% else %} Niezweryfikowany {% endif %} |
Brak użytkowników