about summary refs log tree commit diff
path: root/uploader/templates/samples/sui-upload-failure.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-12-29 11:42:58 -0600
committerFrederick Muriuki Muriithi2025-12-29 11:45:52 -0600
commitb40f14bb409d54fda957e2d8269f1bc86bd34e58 (patch)
tree89eebf97435dda555b9e58653f233afa54e14b4b /uploader/templates/samples/sui-upload-failure.html
parent9a00a08487d0d2b2f8b4363bb76fdad3336b747e (diff)
downloadgn-uploader-b40f14bb409d54fda957e2d8269f1bc86bd34e58.tar.gz
Samples: Move feature to new UI templates.
Diffstat (limited to 'uploader/templates/samples/sui-upload-failure.html')
-rw-r--r--uploader/templates/samples/sui-upload-failure.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/uploader/templates/samples/sui-upload-failure.html b/uploader/templates/samples/sui-upload-failure.html
deleted file mode 100644
index d950c50..0000000
--- a/uploader/templates/samples/sui-upload-failure.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{%extends "sui-base.html"%}
-{%from "cli-output.html" import cli_output%}
-
-{%block title%}Samples Upload Failure{%endblock%}
-
-{%block contents%}
-<div class="row">
-<h2 class="heading">{{job.job_name[0:50]}}&hellip;</h2>
-
-<p>There was a failure attempting to upload the samples.</p>
-
-<p>Here is some information to help with debugging the issue. Provide this
-  information to the developer/maintainer.</p>
-
-<h3>Debugging Information</h3>
-<ul>
-  <li><strong>job id</strong>: {{job.jobid}}</li>
-  <li><strong>status</strong>: {{job.status}}</li>
-  <li><strong>job type</strong>: {{job["job-type"]}}</li>
-</ul>
-</div>
-
-<div class="row">
-<h4>stdout</h4>
-{{cli_output(job, "stdout")}}
-</div>
-
-<div class="row">
-<h4>stderr</h4>
-{{cli_output(job, "stderr")}}
-</div>
-{%endblock%}