81 lines
1.9 KiB
Handlebars
81 lines
1.9 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Отчет по статистике пользователей</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
line-height: 1.5;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
color: #333;
|
|
font-size: 24px;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 20px;
|
|
}
|
|
th, td {
|
|
border: 1px solid #ddd;
|
|
padding: 10px;
|
|
text-align: left;
|
|
}
|
|
th {
|
|
background-color: #f2f2f2;
|
|
color: #333;
|
|
font-weight: bold;
|
|
}
|
|
tr:nth-child(even) {
|
|
background-color: #f9f9f9;
|
|
}
|
|
tr:hover {
|
|
background-color: #f1f1f1;
|
|
}
|
|
@media print {
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
h1 {
|
|
margin-top: 0;
|
|
font-size: 20px;
|
|
}
|
|
table {
|
|
margin-top: 0;
|
|
}
|
|
tr:hover {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Статистика пользователей</h1>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Имя пользователя</th>
|
|
<th>Подписчики</th>
|
|
<th>Подписки</th>
|
|
<th>Каналы</th>
|
|
<th>Сообщения</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each users}}
|
|
<tr>
|
|
<td>{{this.username}}</td>
|
|
<td>{{this.followers_count}}</td>
|
|
<td>{{this.following_count}}</td>
|
|
<td>{{this.channels_count}}</td>
|
|
<td>{{this.messages_count}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |