about summary refs log tree commit diff
path: root/uploader/templates/jobs/sui-job-error.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-12-16 13:30:46 -0600
committerFrederick Muriuki Muriithi2025-12-16 13:32:36 -0600
commit98993dc0be542b377e62c97031f29f63e83f7ed4 (patch)
tree4ee9cb7a6e467b65f4e7d001fd40cc821a972466 /uploader/templates/jobs/sui-job-error.html
parente94474760d20a145a9242680ca908579f2729efc (diff)
downloadgn-uploader-98993dc0be542b377e62c97031f29f63e83f7ed4.tar.gz
Add "Streamlined UI" templates for phenotype upload sub-features.
Diffstat (limited to 'uploader/templates/jobs/sui-job-error.html')
-rw-r--r--uploader/templates/jobs/sui-job-error.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/uploader/templates/jobs/sui-job-error.html b/uploader/templates/jobs/sui-job-error.html
new file mode 100644
index 0000000..1a839a6
--- /dev/null
+++ b/uploader/templates/jobs/sui-job-error.html
@@ -0,0 +1,17 @@
+{%extends "sui-base.html"%}
+
+{%from "flash_messages.html" import flash_all_messages%}
+
+{%block title%}Background Jobs: Error{%endblock%}
+
+{%block pagetitle%}Background Jobs: Error{%endblock%}
+
+{%block contents%}
+
+<h1>Background Jobs: Error</h1>
+<p>Job <strong>{{job["job_id"]}}</strong> failed!</p>
+<p>The error details are in the "STDERR" section below.</p>
+
+<h2>STDERR</h2>
+<pre>{{job["stderr"]}}</pre>
+{%endblock%}