Adds the admin backend foundation: AuditLog + Setting models/migration, an admin-only dashboard with KPI cards, and user management (search, ban/suspend/activate, tier override, trust adjust) with audit logging on every write action. Smoke suite extended to 64 checks.
107 lines
4.4 KiB
HTML
107 lines
4.4 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ _('Admin · %(email)s', email=user.email) }}{% endblock %}
|
|
{% block content %}
|
|
{% include "admin/_nav.html" %}
|
|
|
|
<div class="card">
|
|
<h2>{{ user.display_name }} <{{ user.email }}></h2>
|
|
<table class="attrs">
|
|
<tr><th>{{ _('Role') }}</th><td><span class="badge cat">{{ user.role.value }}</span></td></tr>
|
|
<tr><th>{{ _('Status') }}</th><td><span class="badge {{ 'ok' if user.status.value == 'active' else 'warn' }}">{{ user.status.value }}</span></td></tr>
|
|
<tr><th>{{ _('Trust') }}</th><td>{{ user.trust_tier.value }} ({{ user.trust_score }})</td></tr>
|
|
<tr><th>{{ _('Tier') }}</th><td>{{ user.tier.name if user.tier else '—' }}</td></tr>
|
|
<tr><th>{{ _('Email verified') }}</th><td>{{ _('Yes') if user.email_verified else _('No') }}</td></tr>
|
|
<tr><th>{{ _('Verified badge') }}</th><td>{{ _('Yes') if user.verified else _('No') }}</td></tr>
|
|
<tr><th>{{ _('Last login') }}</th><td>{{ user.last_login_at or '—' }}</td></tr>
|
|
<tr><th>{{ _('Joined') }}</th><td>{{ user.created_at.strftime('%Y-%m-%d') }}</td></tr>
|
|
</table>
|
|
|
|
<div class="billing-actions" style="margin-top:14px">
|
|
<form method="post" action="{{ url_for('admin.ban_user', user_id=user.id) }}"
|
|
onsubmit="return confirm('{{ _('Ban this user?') }}');">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
<button class="btn danger" type="submit">{{ _('Ban') }}</button>
|
|
</form>
|
|
<form method="post" action="{{ url_for('admin.suspend_user', user_id=user.id) }}">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
<button class="btn ghost" type="submit">{{ _('Suspend') }}</button>
|
|
</form>
|
|
<form method="post" action="{{ url_for('admin.activate_user', user_id=user.id) }}">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
<button class="btn" type="submit">{{ _('Activate') }}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h3>{{ _('Tier override') }}</h3>
|
|
<form method="post" action="{{ url_for('admin.set_tier', user_id=user.id) }}" class="row2">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
<select class="input" name="plan_id">
|
|
<option value="">{{ _('None') }}</option>
|
|
{% for p in plans %}
|
|
<option value="{{ p.id }}" {{ 'selected' if user.tier_id == p.id }}>{{ p.name }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<button class="btn" type="submit">{{ _('Update tier') }}</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h3>{{ _('Adjust trust') }}</h3>
|
|
<form method="post" action="{{ url_for('admin.trust_adjust', user_id=user.id) }}" class="row2">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
<select class="input" name="event_type">
|
|
{% for et in TrustEventType %}
|
|
<option value="{{ et.value }}">{{ et.value }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<input class="input" type="number" name="delta" value="0">
|
|
<button class="btn" type="submit">{{ _('Apply') }}</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h3>{{ _('Listings') }}</h3>
|
|
{% if not listings %}<p class="muted">{{ _('No listings.') }}</p>{% endif %}
|
|
<table class="list">
|
|
{% for l in listings %}
|
|
<tr>
|
|
<td><a href="{{ url_for('listings.detail', listing_id=l.id) }}">{{ l.title }}</a></td>
|
|
<td><span class="badge {{ 'ok' if l.is_live else 'warn' }}">{{ l.status.value }}</span></td>
|
|
<td class="muted small">{{ l.created_at.strftime('%Y-%m-%d') }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h3>{{ _('Trust events') }}</h3>
|
|
{% if not trust_events %}<p class="muted">{{ _('None.') }}</p>{% endif %}
|
|
<table class="list">
|
|
{% for ev in trust_events %}
|
|
<tr>
|
|
<td>{{ ev.type.value }}</td>
|
|
<td>{{ '%+d'|format(ev.delta) }}</td>
|
|
<td class="muted small">{{ ev.created_at.strftime('%Y-%m-%d %H:%M') }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h3>{{ _('Audit history') }}</h3>
|
|
{% if not audit_history %}<p class="muted">{{ _('None.') }}</p>{% endif %}
|
|
<table class="list">
|
|
{% for a in audit_history %}
|
|
<tr>
|
|
<td>{{ a.action }}</td>
|
|
<td>{{ a.actor.display_name if a.actor else _('system') }}</td>
|
|
<td class="muted small">{{ a.meta|tojson if a.meta else '' }}</td>
|
|
<td class="muted small">{{ a.created_at.strftime('%Y-%m-%d %H:%M') }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|