-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview_booking.html
More file actions
58 lines (40 loc) · 1.43 KB
/
Copy pathview_booking.html
File metadata and controls
58 lines (40 loc) · 1.43 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{% extends 'Agency/AgencyHome1.html' %}
{% block content %}
<head>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
tr:hover {background-color: coral;}
</style>
</head>
<br><br><br><br><br>
<center><h2>View Booking </h2></center><br><br>
<table>
<tr>
<th class="header-item items"><div align="center">User</div></th>
<th class="header-item items"><div align="center">Booking Date</div></th>
<th class="header-item items"><div align="center">Booking Item</div></th>
<th class="header-item items"><div align="center">Quantity</div></th>
<th class="header-item items"><div align="center">Total Ammount</div></th>
<th class="header-item items"><div align="center">Agency</div></th>
<th></th>
</tr>
{% for row in data %}
<tr>
<td class="items" height="87"><div align="center">{{ row.1 }}</div></td>
<td class="items"><div align="center">{{ row.2 }}</div></td>
<td class="items"><div align="center">{{ row.9 }}</div></td>
<td class="items" height="87"><div align="center">{{ row.4}}</div></td>
<td class="items"><div align="center">{{ row.5 }}</div></td>
<td class="items" height="87"><div align="center">{{ row.7}}</div></td>
{% endfor %}
</tr>
</table>
{% endblock %}