New independent `admin` service (admin.main:app) on the same image, reusing app.db/app.models read-only. Never runs migrations or the scheduler; issues SELECTs only. - Password-gated (ADMIN_CONSOLE_PASSWORD) with a 12h signed cookie; closed by default when the password is empty. - Bound to 127.0.0.1:8091 (SSH-tunnel access); off the intranet/NPM network. - Pages: overview stats, user list + search, per-user history/payment detail, DB usage (information_schema size + row estimates). - Compose: base `admin` service (+prod DB-host override, test mount); Dockerfile bakes admin/ into runtime + test stages. - Tests: tests/test_admin_console.py (auth, queries, page wiring) — 12 passing. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
826 B
HTML
20 lines
826 B
HTML
{% extends "base.html" %}
|
|
{% block title %}users{% endblock %}
|
|
{% block body %}
|
|
<h1>Users <span class="muted">({{ total }})</span></h1>
|
|
<form class="search" method="get" action="/users">
|
|
<input type="text" name="q" value="{{ q }}" placeholder="filter by email…">
|
|
<button type="submit">Search</button>
|
|
{% if q %}<a href="/users" style="margin-left:.5rem">clear</a>{% endif %}
|
|
</form>
|
|
{% include "partials_users_table.html" %}
|
|
|
|
{% set pages = (total // per_page) + (1 if total % per_page else 0) %}
|
|
{% if pages > 1 %}
|
|
<p class="muted">
|
|
Page {{ page }} / {{ pages }}
|
|
{% if page > 1 %}· <a href="/users?page={{ page-1 }}{% if q %}&q={{ q }}{% endif %}">prev</a>{% endif %}
|
|
{% if page < pages %}· <a href="/users?page={{ page+1 }}{% if q %}&q={{ q }}{% endif %}">next</a>{% endif %}
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|