{% extends "base.html" %} {% block title %}{% trans %}Shared Files{% endtrans %}{% endblock %} {% block head %}{{ super() }} {% endblock %} {% block content %}
{% if expired %}

{% if one_time_used %}{% trans %}This link has already been used{% endtrans %}{% else %}{% trans %}This link has expired{% endtrans %}{% endif %}

{% if one_time_used %} {% trans %}This was a one-time link and has already been accessed.{% endtrans %} {% else %} {% trans %}The share link you followed is no longer valid.{% endtrans %} {% endif %}

{% trans %}Go Home{% endtrans %}
{% elif needs_password %}

{% trans %}Password Protected{% endtrans %}

{{ sharer }} {% trans %}shared files with you. Enter the password to access them.{% endtrans %}

{% if password_error %}
{{ password_error }}
{% endif %}
{% else %}

{% trans %}Shared Files{% endtrans %}

{{ sharer }} {% trans %}shared these converted files with you.{% endtrans %} {% if expires_at %} {% trans %}Expires{% endtrans %} {{ expires_at }} {% endif %}

{% trans %}Files{% endtrans %} ({{ file_urls|length }})

{% if file_urls %} {% for file_url in file_urls %}
{{ file_url | basename | splitpart(0, '?') if file_url | basename else file_url }} {% trans %}Download{% endtrans %}
{% endfor %} {% else %}
{% trans %}No files available{% endtrans %}
{% endif %}
{% trans %}Convert your own files for free{% endtrans %}
{% endif %}
{% endblock %}