1 {% extends "base.html" %}
3 {% load url from future %}
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">
36 <p>{% blocktrans %}Your file is ready!
37 If the download doesn't start in a few seconds,
38 feel free to use this <a href="{{ file_url }}">direct link</a>.{% endblocktrans %}</p>
42 <h1>{% trans "Your file is being prepared, please wait." %}</h1>
44 <div class="normal-text">
45 <p>{% blocktrans with d=waiting.description %}The file you requested was: <em>{{d}}</em>.{% endblocktrans %}</p>
47 <p>{% blocktrans %}<strong>Be aware:</strong> Generating the file can take a while.
48 Please be patient, or bookmark this page and come back later.</p>{% endblocktrans %}
51 <h1>{% trans "Something went wrong." %}</h1>
53 <div class="normal-text">
54 {% url 'suggest' as s %}
55 <p>{% blocktrans %}Something seems to have gone wrong while generating your file.
56 Please order it again or <a id='suggest' class='ajaxable' href="{{s}}">complain to us</a> about it.{% endblocktrans %}</p>
65 <script language="JavaScript">
73 success: function(data) {
78 setTimeout(wait, 10*1000);
81 setTimeout(wait, 10*1000);
85 setTimeout(wait, 10*1000);