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><img src="{{ STATIC_URL }}img/indicator.gif" alt="{% trans 'Please wait' %}"/>
 
  43         {% trans "Your file is being prepared, please wait." %}</h1>
 
  45     <div class="normal-text">
 
  46     <p>{% blocktrans with d=waiting.description %}The file you requested was: <em>{{d}}</em>.{% endblocktrans %}</p>
 
  48     <p>{% blocktrans %}<strong>Be aware:</strong> Generating the file can take a while.
 
  49         Please be patient, or bookmark this page and come back later.</p>{% endblocktrans %}
 
  52     <h1>{% trans "Something went wrong." %}</h1>
 
  54     <div class="normal-text">
 
  55     {% url 'suggest' as s %}
 
  56     <p>{% blocktrans %}Something seems to have gone wrong while generating your file.
 
  57         Please order it again or <a id='suggest' class='ajaxable' href="{{s}}">complain to us</a> about it.{% endblocktrans %}</p>
 
  66 <script language="JavaScript">
 
  74         success: function(data) {
 
  79                 setTimeout(wait, 10*1000);
 
  81         error: function(xhr) {
 
  86 setTimeout(wait, 10*1000);