{% trans "Requested content" %}
{% if downloads.actives %}{% trans "Activ downloads" %}:
{% for obj in downloads.actives %} {% trans "Download" %}: {{ obj.get_filename }}{% endfor %}
{% endif %} {% if downloads.expired %}
{% trans "Expired downloads" %}:
{% for obj in downloads.expired %} {% trans "Download" %}: {{ obj.get_filename }}{% endfor %}
{% endif %} {% if downloads.notexist %}
{% trans "These links are faulty" %}:
{% for key in downloads.notexist %} {% trans "Link Error" %}: http://{{ request.META.HTTP_HOST }}/{{ request.LANGUAGE_CODE }}/{{ basepath }}/link/{{ key }}/{% endfor %}
{% endif %}