88ab5b917e
Renames the Python package directory, CLI command, env var prefix, docker-compose service/container/image, Postgres role/db, and all visible branding. Marketing form is "Fabled Steward". Clean break from the previous rebrand: drops the fabledscryer→roundtable import shim in __init__.py and the FABLEDSCRYER_* env var fallback in config.py and migrations/env.py. Env vars are now STEWARD_* only. Heads-up for existing deployments: - Postgres user/db renamed fabledscryer → steward in docker-compose.yml. Existing volumes need the role/db renamed inside Postgres, or override POSTGRES_USER/POSTGRES_DB to keep the old names. - Host-agent systemd unit is now steward-agent.service. Existing agents keep running under the old name; reinstall to switch. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
79 lines
3.7 KiB
HTML
79 lines
3.7 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Share: {{ dashboard.name }} — Steward{% endblock %}
|
|
{% block content %}
|
|
<div style="display:flex;align-items:baseline;justify-content:space-between;margin-bottom:1.5rem;">
|
|
<h1 class="page-title" style="margin-bottom:0;">Share: {{ dashboard.name }}</h1>
|
|
<a href="/d/{{ dashboard.id }}" class="btn btn-ghost btn-sm">Back to Dashboard</a>
|
|
</div>
|
|
|
|
<div style="display:grid;grid-template-columns:1fr 320px;gap:1.5rem;align-items:start;max-width:900px;">
|
|
|
|
{# ── Active tokens ─────────────────────────────────────────────────── #}
|
|
<div>
|
|
<div class="section-title" style="margin-bottom:0.75rem;">Active Share Links</div>
|
|
{% if tokens %}
|
|
<div style="display:grid;gap:0.5rem;">
|
|
{% for token in tokens %}
|
|
{% set expired = token.expires_at is not none and token.expires_at <= now %}
|
|
<div class="card" style="margin-bottom:0;padding:0.85rem 1rem;{% if expired %}opacity:0.5;{% endif %}">
|
|
<div style="display:flex;align-items:center;gap:0.75rem;">
|
|
<div style="flex:1;min-width:0;">
|
|
<div style="font-weight:600;font-size:0.875rem;">
|
|
{{ token.label or "Unnamed link" }}
|
|
{% if expired %}<span class="badge badge-red" style="font-size:0.68rem;">Expired</span>{% endif %}
|
|
</div>
|
|
<div style="font-size:0.77rem;color:var(--text-muted);margin-top:0.15rem;">
|
|
Created {{ token.created_at.strftime("%Y-%m-%d") }}
|
|
{% if token.expires_at %}
|
|
· Expires {{ token.expires_at.strftime("%Y-%m-%d") }}
|
|
{% else %}
|
|
· Never expires
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<form method="post" action="/d/{{ dashboard.id }}/share/revoke/{{ token.id }}"
|
|
style="margin:0;" onsubmit="return confirm('Revoke this share link?')">
|
|
<button type="submit" class="btn btn-danger btn-sm">Revoke</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div style="color:var(--text-muted);font-size:0.85rem;padding:0.5rem 0;">
|
|
No active share links. Create one on the right.
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{# ── Create new token ──────────────────────────────────────────────── #}
|
|
<div>
|
|
<div class="section-title" style="margin-bottom:0.75rem;">Create Share Link</div>
|
|
<div class="card" style="margin-bottom:0;">
|
|
<form method="post" action="/d/{{ dashboard.id }}/share/create">
|
|
<div class="form-group" style="margin-bottom:0.75rem;">
|
|
<label>Label <span style="color:var(--text-muted);font-size:0.78rem;">(optional)</span></label>
|
|
<input type="text" name="label" placeholder="e.g. Public display screen">
|
|
</div>
|
|
<div class="form-group" style="margin-bottom:0.75rem;">
|
|
<label>Expires after</label>
|
|
<select name="expires_in">
|
|
<option value="">Never</option>
|
|
<option value="1">1 day</option>
|
|
<option value="7">7 days</option>
|
|
<option value="30">30 days</option>
|
|
<option value="90">90 days</option>
|
|
</select>
|
|
</div>
|
|
<button type="submit" class="btn">Generate Link</button>
|
|
</form>
|
|
</div>
|
|
<div style="font-size:0.78rem;color:var(--text-muted);margin-top:0.75rem;line-height:1.5;">
|
|
The link is shown <strong>once</strong> after creation.<br>
|
|
Revoke it at any time to cut off access immediately.
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %}
|