File size: 1,310 Bytes
4e89dc3
 
6e86382
4e89dc3
 
 
 
6e86382
 
 
 
 
 
 
 
 
 
 
 
4e89dc3
6e86382
 
4e89dc3
 
6e86382
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4e89dc3
6e86382
4e89dc3
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
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <title>Contacts</title>
    <style>
        table {
            width: 70%;
            border-collapse: collapse;
        }
        th, td {
            border: 1px solid black;
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
    </style>
</head>
<body>
    <h1>Contacts</h1>
    <table>
        <tr>
            <th>Name</th>
            <th>Email</th>
            <th>Phone</th>
            <th>PR1</th>
            <th>PR2</th>
            <th>PR3</th>
            <th>PR4</th>
            <th>PR5</th>
            <th>Date</th>
            <th>Time</th>
        </tr>
        {% for contact in contacts %}
        <tr>
            <td>{{ contact[0] }}</td>
            <td>{{ contact[1] }}</td>
            <td>{{ contact[2] }}</td>
            <td>{{ contact[3] }}</td>
            <td>{{ contact[4] }}</td>
            <td>{{ contact[5] }}</td>
            <td>{{ contact[6] }}</td>
            <td>{{ contact[7] }}</td>
            <td>{{ contact[8] }}</td>
            <td>{{ contact[9] }}</td>
        </tr>
        {% endfor %}
    </table>
</body>
</html>