mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
28 lines
710 B
HTML
28 lines
710 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>
|
|
// @author rubenwardy
|
|
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
|
|
pollTask("{{ url_for('tasks.check', id=info.id) }}", true)
|
|
.then(function() { location.reload() })
|
|
.catch(function() { location.reload() })
|
|
</script>
|
|
<noscript>
|
|
Reload the page to check for updates.
|
|
</noscript>
|
|
{% endif %}
|
|
{% endblock %}
|