about summary refs log tree commit diff
diff options
context:
space:
mode:
-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"%}