1
0
Files
nir/templates/channel_report.hbs
2025-04-03 04:25:33 +03:00

77 lines
1.7 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>
</tr>
</thead>
<tbody>
{{#each channels}}
<tr>
<td>{{#if this.name}}{{this.name}}{{else}}(Без названия){{/if}}</td>
<td>{{this.members_count}}</td>
<td>{{this.messages_count}}</td>
</tr>
{{/each}}
</tbody>
</table>
</body>
</html>