DmitrMakeev commited on
Commit
7975376
1 Parent(s): 9b71f31

Update data_ras.html

Browse files
Files changed (1) hide show
  1. 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
- <style>
8
  body {
9
  font-family: Arial, sans-serif;
10
  text-align: center;
@@ -56,21 +56,23 @@
56
  </style>
57
  </head>
58
  <body>
59
- <h1>База планируемой рассылки</h1>
60
  <p>Total users: {{ total_users }}</p>
61
- <table>
62
- <tr>
63
- <th>Имя</th>
64
- <th>Телефон</th>
65
- <th>Почта</th>
66
- </tr>
67
- {% for contact in contacts %}
68
- <tr>
69
- <td>{{ contact[0] }}</td>
70
- <td>{{ contact[1] }}</td>
71
- <td>{{ contact[2] }}</td>
72
- </tr>
73
- {% endfor %}
74
- </table>
 
 
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>