about summary refs log tree commit diff
path: root/uploader
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-01-08 09:43:18 -0600
committerFrederick Muriuki Muriithi2026-01-08 09:43:18 -0600
commitee40f1a1212118db155b9b5964de2c5268ec20f2 (patch)
tree2153e10b366e5fa30e543d56583c98df9d651f98 /uploader
parent0f93a6585446b8ff22adc6eafb2742984fe75adc (diff)
downloadgn-uploader-ee40f1a1212118db155b9b5964de2c5268ec20f2.tar.gz
List expiration dates.
Diffstat (limited to 'uploader')
-rw-r--r--uploader/templates/background-jobs/list-jobs.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/uploader/templates/background-jobs/list-jobs.html b/uploader/templates/background-jobs/list-jobs.html
index 6457bdf..2642c24 100644
--- a/uploader/templates/background-jobs/list-jobs.html
+++ b/uploader/templates/background-jobs/list-jobs.html
@@ -19,6 +19,8 @@
         <tr class="table-primary">
           <th>Type</th>
           <th>Created</th>
+          <th title="Date and time past which the job's details will be deleted from the system.">
+            Expires</th>
           <th>Status</th>
           <th colspan="2">Actions</th>
         </tr>
@@ -29,6 +31,9 @@
         <tr>
           <td>{{job.metadata["job-type"]}}</td>
           <td>{{display_datetime(job.created)}}</td>
+          <td title="Date and time past which the job's details will be deleted from the system.">
+            {{display_datetime(job.expires)}}
+          </td>
           <td {%if job.metadata.status == "completed"%}
               class="fw-bold text-capitalize text-success"
               {%elif job.metadata.status == "error"%}