{% extends "base.html" %} {% block title %}Panou admin — Gateway RAR AUTOPASS{% endblock %} {% block content %}

Panou admin

Inapoi la dashboard
{% if error %} {% endif %}

Conturi in asteptare ({{ pending|length }})

{% if pending %}
{% for acct in pending %} {% endfor %}
ID Companie CUI Email Inregistrat Actiune
{{ acct.id }} {{ acct.name }} {{ acct.cui or "—" }} {{ acct.email or "—" }} {{ acct.created_at or "—" }}
{% else %}

Niciun cont in asteptare.

{% endif %}

Conturi active ({{ active|length }})

{% if active %}
{% for acct in active %} {% endfor %}
ID Companie CUI Email Inregistrat Actiune
{{ acct.id }} {{ acct.name }} {{ acct.cui or "—" }} {{ acct.email or "—" }} {{ acct.created_at or "—" }}
{% else %}

Niciun cont activ (in afara de contul dev).

{% endif %}
{% if default_account %}

Cont dev implicit (id=1): {{ default_account.name }} — activ={{ default_account.active }} — fara buton de activare/dezactivare (cont de sistem).

{% endif %} {% endblock %}