-
Notifications
You must be signed in to change notification settings - Fork 0
/
results.html
95 lines (69 loc) · 1.99 KB
/
results.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Vehicle Reg. Details</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div class="table-users">
<div class="header">Vehicle Details</div>
<table cellspacing="0">
{% for review in reviews %}
<tbody>
<tr>
<th>Registration No :</th>
<td>{{review['Registration No']}}</td>
<tr>
<tr>
<th>Reg date :</th>
<td>{{review['Reg date']}}</td>
<tr>
<tr>
<th>chassis No :</th>
<td>{{review['chassis No']}}</td>
<tr>
<tr>
<th>Engin No :</th>
<td>{{review['Engin No']}}</td>
<tr>
<tr>
<th>Owner Name :</th>
<td>{{review['Owner Name']}}
<tr>
<tr>
<th>Fuel Type :</th>
<td>{{review['Fuel Type']}}</td>
<tr>
<tr>
<th>Fitness Upto :</th>
<td>{{review['Fitness Upto']}}</td>
<tr>
<tr>
<th>Insurance Upto :</th>
<td>{{review['Insurance Upto']}}</td>
<tr>
<tr>
<th>Fuel Norms :</th>
<td>{{review['Fuel Norms']}} </td>
<tr>
<tr>
<th>Road tax paid upto :</th>
<td>{{review['Road tax paid upto']}}</td>
<tr>
<tr>
<th>Vehicle Class :</th>
<td>{{review['Vehicle Class']}}</td>
<tr>
<tr>
<th>Maker/Model :</th>
<td>{{review['Maker/Model']}}</td>
<tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
</html>