about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-01-08 11:04:50 -0600
committerFrederick Muriuki Muriithi2026-01-08 12:17:26 -0600
commit3b16e8896c107bac05b10213239923a7525a733a (patch)
tree1c97c430d8621c37c8f923c2d30344dd583cbd1a
parent2cef904ae00a70469e42fcd4e475d2c5f1526aa1 (diff)
downloadgn-uploader-3b16e8896c107bac05b10213239923a7525a733a.tar.gz
Add inactive "action buttons" to UI.
Add action buttons as signifiers for possible actions. Currently the
buttons are inactive.
-rw-r--r--uploader/templates/background-jobs/job-summary.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/uploader/templates/background-jobs/job-summary.html b/uploader/templates/background-jobs/job-summary.html
index 8537856..3020b30 100644
--- a/uploader/templates/background-jobs/job-summary.html
+++ b/uploader/templates/background-jobs/job-summary.html
@@ -50,6 +50,20 @@
 </div>
 
 <div class="row">
+  <div class="col">
+    <a href="#"
+       class="btn btn-info not-implemented"
+       title="Update the expiry date and time for this job.">update expiry</a>
+  </div>
+
+  <div class="col">
+    <a href="#"
+       class="btn btn-danger not-implemented"
+       title="Delete this job.">delete</a>
+  </div>
+</div>
+
+<div class="row">
   <h3 class="subheading">Script Errors and Logging</h3>
   <pre>{{job["stderr"]}}</pre>
 </div>