mirror of
https://github.com/minetest/contentdb.git
synced 2025-01-10 23:17:37 +01:00
22 lines
356 B
HTML
22 lines
356 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
Working
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block headextra %}
|
||
|
{% if not "error" in info %}
|
||
|
<meta http-equiv="refresh" content="1;URL=">
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% if "error" in info %}
|
||
|
<h1>Task Failed</h1>
|
||
|
|
||
|
<p>{{ info. error }}</p>
|
||
|
{% else %}
|
||
|
<h1>Working…</h1>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|