contentdb/app/templates/tasks/view.html

26 lines
577 B
HTML

{% extends "base.html" %}
{% block title %}
Working
{% endblock %}
{% block content %}
{% if "error" in info or info.status == "FAILURE" or info.status == "REVOKED" %}
<h1>Task Failed</h1>
<pre>{{ info.error }}</pre>
{% else %}
<h1>Working…</h1>
<script src="/static/polltask.js"></script>
<script>
pollTask("{{ url_for('check_task', id=info.id) }}", true)
.then(function() { location.reload() })
.catch(function() { location.reload() })
</script>
<noscript>
Reload the page to check for updates.
</noscript>
{% endif %}
{% endblock %}