diff options
| author | rubenwardy <rw@rubenwardy.com> | 2018-05-11 15:04:17 +0100 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2018-05-11 15:04:17 +0100 |
| commit | 92717f31dd94ad1c763641a397305de9bc143df9 (patch) | |
| tree | 3ff4f1fbfbd0f2b1490c46905b959e75dacbaafa /app/templates/tasks/view.html | |
| parent | 5424f0aa3499ef9cad33ebad4db055860b8000c8 (diff) | |
| download | cheatdb-92717f31dd94ad1c763641a397305de9bc143df9.tar.xz | |
Add VCS import from Github
Diffstat (limited to 'app/templates/tasks/view.html')
| -rw-r--r-- | app/templates/tasks/view.html | 21 |
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 %} |
