{% extends "admin/layout.html" %} {% block title %}Share Manager – Admin{% endblock %} {% block body %}
{% trans %}View and revoke all users' share links and email-based access grants.{% endtrans %}
| {% trans %}Owner{% endtrans %} | {% trans %}File{% endtrans %} | {% trans %}Link{% endtrans %} | {% trans %}Flags{% endtrans %} | {% trans %}Created{% endtrans %} | {% trans %}Expires{% 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 %}
|
/s/{{ item.token[:16] }}… |
{% if item.has_password %} {% trans %}Password{% endtrans %}{% endif %}
{% if item.is_one_time %}1-time{% endif %}
{% if item.is_accessed %} {% trans %}Accessed{% endtrans %}{% endif %}
|
{{ item.created_at[:10] if item.created_at else '—' }} | {% if item.expires_at %} {{ item.expires_at[:10] }} {% else %} {% trans %}Never{% endtrans %} {% endif %} |
{% if search %}{% trans %}No share links match your search.{% endtrans %}{% else %}{% trans %}No share links exist yet.{% endtrans %}{% endif %}
| {% 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 '—' }} |
{% if search %}{% trans %}No grants match your search.{% endtrans %}{% else %}{% trans %}No email grants exist yet.{% endtrans %}{% endif %}