36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Administration · Steady{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="page-heading">
|
|
<div>
|
|
<p class="eyebrow">Restricted placeholder</p>
|
|
<h1>Administration</h1>
|
|
<p>The admin boundary is active. Operational tools remain intentionally unavailable.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="admin-placeholder-grid">
|
|
<section class="transfer-card">
|
|
<h2>User management</h2>
|
|
<p>Future scope: account review, role assignment, suspension, and audited administrative actions.</p>
|
|
<span class="status">Not implemented</span>
|
|
</section>
|
|
<section class="transfer-card">
|
|
<h2>Analytics</h2>
|
|
<p>Future scope: privacy-preserving aggregate usage and operational health metrics.</p>
|
|
<span class="status">Not implemented</span>
|
|
</section>
|
|
</div>
|
|
|
|
<aside class="admin-boundary">
|
|
<h2>Current security boundary</h2>
|
|
<ul>
|
|
<li>The feature is absent unless <code>FEATURE_ADMIN</code> is enabled.</li>
|
|
<li>Only authenticated users with the <code>admin</code> role receive access.</li>
|
|
<li>No user records or analytics are queried by this placeholder.</li>
|
|
</ul>
|
|
</aside>
|
|
{% endblock %}
|
|
|