{% extends "base.html" %} {% block title %}{{ table_name }} — Portal Auth Admin{% endblock %} {% block content %}

Table: {{ table_name }}

{% if table_name == 'users' %} Add user {% endif %} ← Dashboard
{% for key in columns %} {% endfor %} {% if table_name in ['users', 'sessions', 'api_tokens'] %} {% endif %} {% for row in rows %} {% for key in columns %} {% endfor %} {% if table_name == 'users' and raw_rows %} {% elif table_name == 'sessions' and raw_rows %} {% elif table_name == 'api_tokens' and raw_rows %} {% endif %} {% endfor %}
{{ key }}Actions
{{ (row.get(key, ''))[:80] }}{% if row.get(key, '') and (row.get(key, ''))|length > 80 %}…{% endif %} Edit Password
{% if not rows %}

No rows.

{% endif %}
{% endblock %}