{% extends "base.html" %} {% block title %}Share: {{ dashboard.name }} — Steward{% endblock %} {% block content %}

Share: {{ dashboard.name }}

Back to Dashboard
{# ── Active tokens ─────────────────────────────────────────────────── #}
Active Share Links
{% if tokens %}
{% for token in tokens %} {% set expired = token.expires_at is not none and token.expires_at <= now %}
{{ token.label or "Unnamed link" }} {% if expired %}Expired{% endif %}
Created {{ token.created_at.strftime("%Y-%m-%d") }} {% if token.expires_at %} · Expires {{ token.expires_at.strftime("%Y-%m-%d") }} {% else %} · Never expires {% endif %}
{% endfor %}
{% else %}
No active share links. Create one on the right.
{% endif %}
{# ── Create new token ──────────────────────────────────────────────── #}
Create Share Link
The link is shown once after creation.
Revoke it at any time to cut off access immediately.
{% endblock %}