blob: 82e33c034c977b7ba12cd78edb2d14c6a1106af7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{%macro display_job_details(job, display_datetime)%}
<table class="table">
<thead>
</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>
</table>
{%endmacro%}
|