aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/base/booking/booking_table.html
blob: c7743ca17787b3154ea79178098c0b2f2c15bc31 (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
<thead>
<tr class="Anuket-Text">
    <th>Owner</th>
    <th>Purpose</th>
    <th>Project</th>
    <th>Start</th>
    <th>End</th>
</tr>
</thead>
<tbody>
{% for booking in bookings %}
    <tr class="Anuket-Text">
        <td>
            {{ booking.owner.username }}
        </td>
        <td>
            {{ booking.purpose }}
        </td>
        <td>
            {{ booking.project }}
        </td>
        <td>
            {{ booking.start }}
        </td>
        <td>
            {{ booking.end }}
        </td>
    </tr>
{% endfor %}
</tbody>