1 {% extends "base/base.html" %}
3 {% load static from staticfiles %}
7 {% trans "The file is ready for download!" %}
10 {% trans "Your file is being prepared, please wait." %}
12 {% trans "Something went wrong." %}
20 <meta http-equiv="refresh" content="3; url={{ file_url }}" />
24 <meta http-equiv="refresh" content="10" />
33 <h1>{% trans "The file is ready for download!" %}</h1>
35 <div class="normal-text white-box">
37 {% blocktrans %}Your file is ready!
38 If the download doesn't start in a few seconds,
39 feel free to use this <a href="{{ file_url }}">direct link</a>.{% endblocktrans %}
45 <img src="{% static "img/indicator.gif" %}" alt="{% trans 'Please wait' %}"/>
46 {% trans "Your file is being prepared, please wait." %}
49 <div class="normal-text">
50 <p>{% blocktrans with d=waiting.description %}The file you requested was: <em>{{d}}</em>.{% endblocktrans %}</p>
53 {% blocktrans %}<strong>Be aware:</strong> Generating the file can take a while.
54 Please be patient, or bookmark this page and come back later.{% endblocktrans %}
58 <h1>{% trans "Something went wrong." %}</h1>
60 <div class="normal-text">
61 {% url 'suggest' as s %}
63 {% blocktrans %}Something seems to have gone wrong while generating your file.
64 Please order it again or <a id='suggest' class='ajaxable' href="{{s}}">complain to us</a> about it.{% endblocktrans %}
73 <script language="JavaScript">
81 success: function(data) {
86 setTimeout(wait, 10*1000);
88 error: function(xhr) {
93 setTimeout(wait, 10*1000);