Restructure dashboard project for docker deploying
[pharos.git] / tools / pharos-dashboard / src / templates / booking / booking_detail.html
1 {% load jira_filters %}
2
3 <p>
4     <b>Resource: </b>
5     <a href="{{ booking.resource.url }}">
6         {{ booking.resource.name }}
7     </a>
8 </p>
9 <p>
10     <b>User: </b> {{ booking.user.username }}
11 </p>
12 <p>
13     <b>Start: </b> {{ booking.start }}
14 </p>
15 <p>
16     <b>End: </b> {{ booking.end }}
17 </p>
18 <p>
19     <b>Purpose: </b> {{ booking.purpose }}
20 </p>
21 <p>
22     <b>Jira: </b>
23     <a href="{{ jira_issue | jira_issue_url }}">
24         {{ jira_issue }}
25     </a>
26 </p>