blob: 4afb4d2eaf88b14e5e620e084a996d6dcb42fde7 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
{% load jira_filters %}
<thead>
<tr>
<th>Owner</th>
<th>Purpose</th>
<th>Project</th>
<th>Start</th>
<th>End</th>
<th>Operating System</th>
<th>Pod</th>
</tr>
</thead>
<tbody>
{% for booking in bookings %}
<tr>
<td>
{{ booking.owner.username }}
</td>
<td>
{{ booking.purpose }}
</td>
<td>
{{ booking.project }}
</td>
<td>
{{ booking.start }}
</td>
<td>
{{ booking.end }}
</td>
<td>
{{ booking.resource.get_head_node.config.image.os.name }}
</td>
<td>
{{ booking.resource.get_template_name }}
</td>
</tr>
{% endfor %}
</tbody>
|