{% extends 'paxalia/base.html' %} {% load static i18n %} {% block title %}{% trans "Share Links" %} – Paxalia Analytics{% endblock %} {% block page_title %}{% trans "Share Links" %}{% endblock %} {% block page_subtitle %}{% trans "Public, read-only links to a traffic snapshot — no login required to view" %}{% endblock %} {% block extra_css %} {% endblock %} {% block dashboard_content %}

{% trans "Create a Share Link" %}

{% csrf_token %}

{% trans "Shows a 30-day traffic snapshot (views, unique visitors, top pages, top referrers) — not the full dashboard. Anyone with the link (and password, if set) can view it without logging in." %}

{% trans "Links" %}

{% if links %} {% for link in links %} {% endfor %}
{% trans "Name" %} {% trans "Link" %} {% trans "Password" %} {% trans "Expires" %} {% trans "Status" %} {% trans "Last viewed" %} {% trans "Actions" %}
{{ link.name }} {{ request.scheme }}://{{ request.get_host }}{% url 'paxalia:shared_dashboard' link.id %} {% if link.has_password %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} {{ link.expires_at|date:"Y-m-d"|default:"—" }} {% if link.is_expired %}{% trans "Expired" %}{% elif link.is_active %}{% trans "Active" %}{% else %}{% trans "Revoked" %}{% endif %} {{ link.last_viewed_at|date:"Y-m-d H:i"|default:"—" }} {% if link.is_active %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{% else %}
{% trans "No share links yet." %}
{% endif %}
{% endblock %} {% block page_scripts %} {% endblock %}