Jurnal de aplicatie
{% if is_admin %}
admin: toate conturile
{% else %}
doar evenimentele contului tau
{% endif %}
{% if evenimente %}
| Cand |
Sursa |
Tip |
Nivel |
{% if is_admin %}Cont | {% endif %}
Cod |
Mesaj |
{% for e in evenimente %}
| {{ e.ts }} |
{{ e.sursa }} |
{{ e.tip }} |
{{ e.nivel }}
|
{% if is_admin %}{{ e.account_id if e.account_id is not none else '—' }} | {% endif %}
{{ e.cod or '—' }} |
{{ e.mesaj or '' }} |
{% endfor %}
{# Paginare: prev/next pe acelasi set de filtre #}
{% if prev_page is not none or next_page is not none %}
{% if prev_page is not none %}
‹ mai noi
{% endif %}
pagina {{ page + 1 }}
{% if next_page is not none %}
mai vechi ›
{% endif %}
{% endif %}
{% else %}
Niciun eveniment pe filtrul curent.
{% endif %}