mirror of
https://github.com/zvx-echo6/recon.git
synced 2026-05-20 14:44:54 +02:00
- Create Nav-I top-level section in dashboard navigation - Move Deleted Contacts from Knowledge subnav to Nav-I - Add Nav-I landing page with card grid (deleted count, API keys stub) - Add /nav-i/api-keys placeholder page - Add restore-as endpoint for Home/Work conflict resolution - Conflict modal in deleted contacts template for label rename on restore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
1,017 B
HTML
22 lines
1,017 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h3 style="color:var(--green);margin-bottom:16px;">Nav-I</h3>
|
|
<p class="text-dim" style="margin-bottom:24px;">Navi frontend management — contacts, API keys, and configuration.</p>
|
|
|
|
<div class="stat-grid">
|
|
<a href="/deleted-contacts" style="text-decoration:none;">
|
|
<div class="stat-card" style="cursor:pointer;transition:border-color 0.15s;">
|
|
<div class="label">Deleted Contacts</div>
|
|
<div class="value">{{ deleted_count }}</div>
|
|
<div class="sublabel">awaiting restore or purge</div>
|
|
</div>
|
|
</a>
|
|
<a href="/nav-i/api-keys" style="text-decoration:none;">
|
|
<div class="stat-card" style="cursor:pointer;transition:border-color 0.15s;">
|
|
<div class="label">API Keys</div>
|
|
<div class="value" style="font-size:14px;color:var(--text-dim);margin-top:12px;">Coming soon</div>
|
|
<div class="sublabel">per-user key management</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
{% endblock %}
|