1 {% extends "base.html" %}
3 {% load static from staticfiles %}
4 {% load url from future %}
8 {% trans "The file is ready for download!" %}
11 {% trans "Your file is being prepared, please wait." %}
13 {% trans "Something went wrong." %}
21 <meta http-equiv="refresh" content="3; url={{ file_url }}" />
25 <meta http-equiv="refresh" content="10" />
34 <h1>{% trans "The file is ready for download!" %}</h1>
36 <div class="normal-text white-box">
37 <p>{% 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 %}</p>
43 <h1><img src="{% static "img/indicator.gif" %}" alt="{% trans 'Please wait' %}"/>
44 {% trans "Your file is being prepared, please wait." %}</h1>
46 <div class="normal-text">
47 <p>{% blocktrans with d=waiting.description %}The file you requested was: <em>{{d}}</em>.{% endblocktrans %}</p>
49 <p>{% blocktrans %}<strong>Be aware:</strong> Generating the file can take a while.
50 Please be patient, or bookmark this page and come back later.</p>{% endblocktrans %}
53 <h1>{% trans "Something went wrong." %}</h1>
55 <div class="normal-text">
56 {% url 'suggest' as s %}
57 <p>{% blocktrans %}Something seems to have gone wrong while generating your file.
58 Please order it again or <a id='suggest' class='ajaxable' href="{{s}}">complain to us</a> about it.{% endblocktrans %}</p>
67 <script language="JavaScript">
75 success: function(data) {
80 setTimeout(wait, 10*1000);
82 error: function(xhr) {
87 setTimeout(wait, 10*1000);