1 {% extends request.EXPERIMENTS.layout.value|yesno:"2022/base_simple.html,base/base.html" %}
3 {% load static from static %}
8 {% trans "Your file is being prepared, please wait." as title %}
13 {% block titleextra %}
15 {% trans "The file is ready for download!" %}
18 {% trans "Your file is being prepared, please wait." %}
20 {% trans "Something went wrong." %}
28 <meta http-equiv="refresh" content="3; url={{ file_url }}" />
32 <meta http-equiv="refresh" content="10" />
41 <h1>{% trans "The file is ready for download!" %}</h1>
43 <div class="normal-text white-box">
45 {% blocktrans %}Your file is ready!
46 If the download doesn't start in a few seconds,
47 feel free to use this <a href="{{ file_url }}">direct link</a>.{% endblocktrans %}
53 {% trans "Your file is being prepared, please wait." %}
56 <div class="normal-text">
58 <img src="{% static "img/indicator.gif" %}" alt="{% trans 'Please wait' %}"/>
59 {% blocktrans with d=waiting.description %}The file you requested was: <em>{{d}}</em>.{% endblocktrans %}
63 {% blocktrans %}<strong>Be aware:</strong> Generating the file can take a while.
64 Please be patient, or bookmark this page and come back later.{% endblocktrans %}
68 <h1>{% trans "Something went wrong." %}</h1>
70 <div class="normal-text">
71 {% url 'suggest' as s %}
73 {% blocktrans %}Something seems to have gone wrong while generating your file.
74 Please order it again or <a id='suggest' class='ajaxable' href="{{s}}">complain to us</a> about it.{% endblocktrans %}
83 <script language="JavaScript">
91 success: function(data) {
96 setTimeout(wait, 10*1000);
98 error: function(xhr) {
103 setTimeout(wait, 10*1000);