add nick
[laas.git] / src / templates / base / booking / booking_table.html
1
2
3
4 <thead>
5 <tr class="Anuket-Text">
6     <th>Owner</th>
7     <th>Purpose</th>
8     <th>Project</th>
9     <th>Start</th>
10     <th>End</th>
11     <th>Operating System</th>
12 </tr>
13 </thead>
14 <tbody>
15 {% for booking in bookings %}
16     <tr class="Anuket-Text">
17         <td>
18             {{ booking.owner.username }}
19         </td>
20         <td>
21             {{ booking.purpose }}
22         </td>
23         <td>
24             {{ booking.project }}
25         </td>
26         <td>
27             {{ booking.start }}
28         </td>
29         <td>
30             {{ booking.end }}
31         </td>
32         <td>
33             {{ booking.resource.get_head_node.config.image.os.name }}
34         </td>
35     </tr>
36 {% endfor %}
37 </tbody>