{% extends "base.html" %} {% load i18n %} {% load static from staticfiles %} {% block titleextra %} {% if file_url %} {% trans "The file is ready for download!" %} {% else %} {% if waiting %} {% trans "Your file is being prepared, please wait." %} {% else %} {% trans "Something went wrong." %} {% endif %} {% endif %} {% endblock %} {% block extrahead %} {% if file_url %} {% else %} {% if waiting %} {% endif %} {% endif %} {% endblock %} {% block body %} {% if file_url %}

{% trans "The file is ready for download!" %}

{% blocktrans %}Your file is ready! If the download doesn't start in a few seconds, feel free to use this direct link.{% endblocktrans %}

{% else %} {% if waiting %}

{% trans 'Please wait' %} {% trans "Your file is being prepared, please wait." %}

{% blocktrans with d=waiting.description %}The file you requested was: {{d}}.{% endblocktrans %}

{% blocktrans %}Be aware: Generating the file can take a while. Please be patient, or bookmark this page and come back later.

{% endblocktrans %}
{% else %}

{% trans "Something went wrong." %}

{% url 'suggest' as s %}

{% blocktrans %}Something seems to have gone wrong while generating your file. Please order it again or complain to us about it.{% endblocktrans %}

{% endif %} {% endif %} {% endblock %} {% block extrabody %} {% if waiting %} {% endif %} {% endblock %}