aboutsummaryrefslogtreecommitdiff
path: root/app/templates/tasks/view.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/tasks/view.html')
-rw-r--r--app/templates/tasks/view.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/templates/tasks/view.html b/app/templates/tasks/view.html
new file mode 100644
index 0000000..a01ca80
--- /dev/null
+++ b/app/templates/tasks/view.html
@@ -0,0 +1,21 @@
+{% 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 %}