Code Review
/
pharos-tools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
history
|
raw
|
HEAD
Fix Booking List
[pharos-tools.git]
/
dashboard
/
src
/
templates
/
booking
/
booking_table.html
1
{% load jira_filters %}
2
3
4
<thead>
5
<tr>
6
<th>Owner</th>
7
<th>Purpose</th>
8
<th>Start</th>
9
<th>End</th>
10
<th>Operating System</th>
11
<th>Installer</th>
12
<th>Scenario</th>
13
</tr>
14
</thead>
15
<tbody>
16
{% for booking in bookings %}
17
<tr>
18
<td>
19
{{ booking.owner.username }}
20
</td>
21
<td>
22
{{ booking.purpose }}
23
</td>
24
<td>
25
{{ booking.start }}
26
</td>
27
<td>
28
{{ booking.end }}
29
</td>
30
<td>
31
{{ booking.opsys }}
32
</td>
33
<td>
34
{{ booking.installer }}
35
</td>
36
<td>
37
{{ booking.scenario }}
38
</td>
39
</tr>
40
{% endfor %}
41
</tbody>