DmitrMakeev
commited on
Update data_gc.html
Browse files- data_gc.html +24 -17
data_gc.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
<meta charset="utf-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6 |
<title>Contacts</title>
|
7 |
-
|
8 |
body {
|
9 |
font-family: Arial, sans-serif;
|
10 |
text-align: center;
|
@@ -20,13 +20,18 @@
|
|
20 |
margin: 0;
|
21 |
border-bottom: 2px solid #388E3C;
|
22 |
}
|
23 |
-
|
|
|
|
|
24 |
width: 70%;
|
25 |
margin: 20px auto;
|
26 |
-
border-collapse: collapse;
|
27 |
background-color: white;
|
28 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
29 |
}
|
|
|
|
|
|
|
|
|
30 |
th, td {
|
31 |
border: 1px solid #ddd;
|
32 |
padding: 12px;
|
@@ -53,19 +58,21 @@
|
|
53 |
<body>
|
54 |
<h1>База синзронизации с Getcurse</h1>
|
55 |
<p>Total users: {{ total_users }}</p>
|
56 |
-
<
|
57 |
-
<
|
58 |
-
<
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
<
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
|
|
|
|
70 |
</body>
|
71 |
</html>
|
|
|
4 |
<meta charset="utf-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6 |
<title>Contacts</title>
|
7 |
+
<style>
|
8 |
body {
|
9 |
font-family: Arial, sans-serif;
|
10 |
text-align: center;
|
|
|
20 |
margin: 0;
|
21 |
border-bottom: 2px solid #388E3C;
|
22 |
}
|
23 |
+
.scroll-container {
|
24 |
+
max-height: 400px; /* Устанавливаем максимальную высоту контейнера */
|
25 |
+
overflow-y: auto; /* Добавляем вертикальную прокрутку */
|
26 |
width: 70%;
|
27 |
margin: 20px auto;
|
|
|
28 |
background-color: white;
|
29 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
30 |
}
|
31 |
+
table {
|
32 |
+
width: 100%;
|
33 |
+
border-collapse: collapse;
|
34 |
+
}
|
35 |
th, td {
|
36 |
border: 1px solid #ddd;
|
37 |
padding: 12px;
|
|
|
58 |
<body>
|
59 |
<h1>База синзронизации с Getcurse</h1>
|
60 |
<p>Total users: {{ total_users }}</p>
|
61 |
+
<div class="scroll-container">
|
62 |
+
<table>
|
63 |
+
<tr>
|
64 |
+
<th>Имя</th>
|
65 |
+
<th>Телефон</th>
|
66 |
+
<th>Почта</th>
|
67 |
+
</tr>
|
68 |
+
{% for contact in contacts %}
|
69 |
+
<tr>
|
70 |
+
<td>{{ contact[0] }}</td>
|
71 |
+
<td>{{ contact[1] }}</td>
|
72 |
+
<td>{{ contact[2] }}</td>
|
73 |
+
</tr>
|
74 |
+
{% endfor %}
|
75 |
+
</table>
|
76 |
+
</div>
|
77 |
</body>
|
78 |
</html>
|