diff options
| author | Frederick Muriuki Muriithi | 2026-01-08 11:03:54 -0600 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-01-08 12:17:25 -0600 |
| commit | 2cef904ae00a70469e42fcd4e475d2c5f1526aa1 (patch) | |
| tree | ad821196770ff9a0a862968733c7e773770873b0 | |
| parent | 56360e232071128874c4d370c282500512598d50 (diff) | |
| download | gn-uploader-2cef904ae00a70469e42fcd4e475d2c5f1526aa1.tar.gz | |
Rework summary table
Move table headers to beginning of row to acquire more space for rendering information.
| -rw-r--r-- | uploader/templates/background-jobs/job-summary.html | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/uploader/templates/background-jobs/job-summary.html b/uploader/templates/background-jobs/job-summary.html index fef89f2..8537856 100644 --- a/uploader/templates/background-jobs/job-summary.html +++ b/uploader/templates/background-jobs/job-summary.html @@ -22,17 +22,27 @@ <table class="table"> <thead> - <tr class="table-primary"> - <th>Job ID</th> - <th>Type</th> - <th>Status</th> - </tr> </thead> <tbody> <tr> + <th class="table-primary">Job ID</th> <td>{{job.job_id}}</td> + </tr> + <tr> + <th class="table-primary">Type</th> <td>{{job.metadata["job-type"]}}</td> + </tr> + <tr> + <th class="table-primary">Created</th> + <td>{{display_datetime(job.created)}}</td> + </tr> + <tr> + <th class="table-primary">Expires</th> + <td>{{display_datetime(job.expires)}}</td> + </tr> + <tr> + <th class="table-primary">Status</th> <td>{{job.metadata.status}}</td> </tr> </tbody> |
