summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/templates/booking/booking_table.html
blob: 3d0b75750c076f132f4400c89b7bccf3733e5ba9 (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
{% load jira_filters %}


<thead>
<tr>
    <th>User</th>
    <th>Purpose</th>
    <th>Start</th>
    <th>End</th>
    <th>Jira</th>
</tr>
</thead>
<tbody>
{% for booking in bookings %}
    <tr>
        <th>
            {{ booking.user.username }}
        </th>
        <th>
            {{ booking.purpose }}
        </th>
        <th>
            {{ booking.start }}
        </th>
        <th>
            {{ booking.end }}
        </th>
        <th><a target='_blank'
               href={{ booking.get_jira_issue | jira_issue_url }}>{{ booking.get_jira_issue }}</a>
        </th>
    </tr>
{% endfor %}
</tbody>