File size: 2,478 Bytes
3b0a5d6
d1f1468
3b0a5d6
 
 
2bea333
b7eeda1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bea6185
b7eeda1
 
 
bea6185
 
b7eeda1
d1f1468
3b0a5d6
9aff103
 
bea6185
3b0a5d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9aff103
d1f1468
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Data GC</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            background-color: #f0f0f0;
            margin: 0;
            padding: 0;
        }
        h1 {
            background-color: #4CAF50;
            color: white;
            padding: 20px;
            margin: 0;
            border-bottom: 2px solid #388E3C;
        }
        .scroll-container {
            max-height: 400px; /* Устанавливаем максимальную высоту контейнера */
            overflow-y: auto; /* Добавляем вертикальную прокрутку */
            width: 70%;
            margin: 20px auto;
            background-color: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #4CAF50;
            color: white;
            border-bottom: 2px solid #388E3C;
            position: sticky; /* Делаем шапку фиксированной */
            top: 0; /* Фиксируем шапку сверху */
            z-index: 1; /* Устанавливаем z-index для шапки */
        }
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        tr:hover {
            background-color: #e0e0e0;
        }
        .total-users {
            margin-top: 20px;
            font-size: 18px;
            color: #333;
            display: block;
            text-align: center;
        }
    </style>
</head>
<body>
    <h1>Data GC</h1>
    <p class="total-users">Total Users: {{ total_users }}</p>
    <div class="scroll-container">
        <table>
            <thead>
                <tr>
                    <th>Name</th>
                    <th>Phone</th>
                    <th>Email</th>
                </tr>
            </thead>
            <tbody>
                {% for contact in contacts %}
                <tr>
                    <td>{{ contact[0] }}</td>
                    <td>{{ contact[1] }}</td>
                    <td>{{ contact[2] }}</td>
                </tr>
                {% endfor %}
            </tbody>
        </table>
    </div>
</body>
</html>