16abe754af
Rust (cot framework) + PostgreSQL boilerplate providing: - Session-based auth with Admin/User roles - OIDC/SSO login with PKCE, group-to-role mapping, auto-provisioning - Admin panel: user management, settings, debug/config inspector - 3-tier config system (compiled default → DB → FURU_* env vars) - i18n (English + Russian) with compile-time translations macro - JSON API skeleton (GET /api/me) - DB-backed sessions (survive server restarts) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
240 B
HTML
9 lines
240 B
HTML
{% extends "admin/layout.html" %}
|
|
|
|
{% block admin_title %}{{ t.nav_dashboard }}{% endblock admin_title %}
|
|
|
|
{% block content %}
|
|
<h1>{{ t.admin_heading }}</h1>
|
|
<p><a href="/admin/debug">{{ t.admin_debug_link }}</a></p>
|
|
{% endblock content %}
|