Now ticket download retries automatically if it's not ready

This commit is contained in:
Ed 2022-12-19 22:09:24 +01:00
parent 9f92c3806b
commit 136a220f07
1 changed files with 4 additions and 0 deletions

View File

@ -4,5 +4,9 @@
<main class="container"> <main class="container">
<h1>{{exception.status_code}}</h1> <h1>{{exception.status_code}}</h1>
<p>{{exception}}</p> <p>{{exception}}</p>
{% if exception.status_code == 409 %}
<p>Retrying in 1 second...</p>
<meta http-equiv="refresh" content="1">
{% endif %}
</main> </main>
{% endblock %} {% endblock %}