basic waiter support; needs polishing
[wolnelektury.git] / apps / waiter / templates / waiter / wait.html
1 {% extends "base.html" %}
2
3 {% block titleextra %}Prosię ciekać{% endblock %}
4
5
6 {% block extrahead %}
7         {# TODO: Not like that! What are you, caveman?! #}
8         <meta http-equiv="refresh" content="{% if file_url %}0; url={{ file_url }}{% else %}5{% endif %}" />
9 {% endblock %}
10
11
12 {% block body %}
13         {% if file_url %}
14         <p>Plik jest gotowy! Jeśli pobieranie nie zacznie się automatycznie,
15                 oto <a href="{{ file_url }}">bezpośredni link</a>.</p>
16         {% else %}
17                 <p>Idź na kawę. To trochę potrwa.</p>
18
19                 <p>{{ waiting_for.description }}</p>
20         {% endif %}
21 {% endblock %}