{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "download" %} {% endblock %} {% block title2 %} {% trans "for later use please bookmark this page" %}. {% endblock %} {% block content %}

{% 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 %}
 

{% trans "difficulties encountered?" %}

{% trans "If something goes wrong with your download then contact us with" %} {% trans "our contact form" %}.
{% endblock %}