-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.html
47 lines (34 loc) · 1001 Bytes
/
result.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Review Page</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">Reviews</div>
<table cellspacing="0">
<tr>
<th>Product</th>
<th>Name</th>
<th>Rating</th>
<th>Comment Heading</th>
<th>mycomment </th>
<th width="230">Comments</th>
</tr>
{% for review in reviews %}
<tr>
<td>{{review['Product']}}</td>
<td>{{review['Name']}}</td>
<td>{{review['Rating']}}</td>
<td>{{review['CommentHead']}}</td>
<td>{{review['Comment']}} </td>
<td>{{review['Comment']}} </td>
{% endfor %}
</table>
</div>
</body>
</html>