{% extends "base.html" %} {% block title %}My File Shares{% endblock %} {% block content %}

My File Shares

Anonymous-access download links you've created.

{% if rows %} {% for r in rows %} {% endfor %}
FileNoteToken URLDownloads ExpiresStatus
{{ r.filename }}
in {{ r.file_area.tag if r.file_area else '?' }}
{{ r.note or '' }} {{ r.download_count or 0 }}{% if r.max_downloads %}/{{ r.max_downloads }}{% endif %} {{ r.expires_at.strftime('%Y-%m-%d %H:%M') if r.expires_at else 'never' }} {% if r.is_revoked %}revoked {% elif not r.is_valid %}expired/maxed {% else %}active{% endif %} {% if not r.is_revoked %}
{% endif %}
{% else %}
No shares yet — share a file from a file area page.
{% endif %}
{% endblock %}