DmitrMakeev
commited on
Commit
•
7975376
1
Parent(s):
9b71f31
Update data_ras.html
Browse files- data_ras.html +18 -16
data_ras.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;
|
@@ -56,21 +56,23 @@
|
|
56 |
</style>
|
57 |
</head>
|
58 |
<body>
|
59 |
-
<h1>База
|
60 |
<p>Total users: {{ total_users }}</p>
|
61 |
-
<
|
62 |
-
<
|
63 |
-
<
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
<
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
|
|
|
|
75 |
</body>
|
76 |
</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;
|
|
|
56 |
</style>
|
57 |
</head>
|
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>
|