{% extends "admin/layout.html" %} {% block title %}Share Manager – Admin{% endblock %} {% block body %}

{% trans %}Share Manager{% endtrans %}

{% trans %}View and revoke all users' share links and email-based access grants.{% endtrans %}

{% trans %}Share Links{% endtrans %} {% if tab == 'links' %}{{ total }}{% endif %} {% trans %}Email Grants{% endtrans %} {% if tab == 'grants' %}{{ total }}{% endif %}
{% if search %} {% trans %}Clear{% endtrans %} {% endif %}
{% if tab == 'links' %}
{% if items %}
{% for item in items %} {% endfor %}
{% trans %}Owner{% endtrans %} {% trans %}File{% endtrans %} {% trans %}Link{% endtrans %} {% trans %}Flags{% endtrans %} {% trans %}Created{% endtrans %} {% trans %}Expires{% endtrans %} {% trans %}Action{% endtrans %}
{% else %}

{% if search %}{% trans %}No share links match your search.{% endtrans %}{% else %}{% trans %}No share links exist yet.{% endtrans %}{% endif %}

{% endif %}
{% else %}
{% if items %}
{% for item in items %} {% endfor %}
{% trans %}File Owner{% endtrans %} {% trans %}File{% endtrans %} {% trans %}Granted To{% endtrans %} {% trans %}Granted At{% endtrans %} {% trans %}Action{% endtrans %}
{{ item.owner_username or item.owner_email or '—' }}
{{ item.owner_email or '—' }}
{% if item.file_name %}
{{ item.file_name }}
{% endif %}
{% if item.input_format %}{{ item.input_format }}{% endif %} {% if item.output_format %}{{ item.output_format }}{% endif %}
{{ item.job_id[:12] if item.job_id else '' }}…
{{ (item.granted_to_email or '?')[0].upper() }}
{{ item.granted_to_email or '—' }}
{{ item.granted_at[:10] if item.granted_at else '—' }}
{% else %}

{% if search %}{% trans %}No grants match your search.{% endtrans %}{% else %}{% trans %}No email grants exist yet.{% endtrans %}{% endif %}

{% endif %}
{% endif %} {% if total_pages > 1 %}
{% trans %}Page{% endtrans %} {{ page }} {% trans %}of{% endtrans %} {{ total_pages }}
{% if page > 1 %} ← {% trans %}Prev{% endtrans %} {% endif %} {% if page < total_pages %} {% trans %}Next{% endtrans %} → {% endif %}
{% endif %} {% endblock %} {% block page_scripts %} {% endblock %}