/
aska
/
Ask
Обзор
Документация
Войти
/
aska
/
Ask
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
program/templates/stats.html
71 строка
2 KB
andmigunv
Добавлены файлы сервиса коротких ссылок
08 июн 2026, 00:14
08 июн 2026, 00:14
0e2427c
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Статистика — {{ code }}</title> <style> * { box-sizing: border-box; } body { font-family: system-ui, sans-serif; max-width: 800px; margin: 40px auto; padding: 0 20px; color: #222; } h1 { font-size: 1.5rem; } .info { background: #f8fafc; padding: 16px; border-radius: 8px; margin: 20px 0; } .info p { margin: 6px 0; word-break: break-all; } .count { font-size: 2rem; font-weight: bold; color: #2563eb; } table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 0.9rem; } th, td { border: 1px solid #e2e8f0; padding: 8px 10px; text-align: left; } th { background: #f1f5f9; } a { color: #2563eb; } .empty { color: #666; font-style: italic; } </style> </head> <body> <h1>Статистика переходов</h1> <p><a href="/">← На главную</a></p> <div class="info"> <p><strong>Код:</strong> {{ code }}</p> <p><strong>Короткая ссылка:</strong> <a href="{{ short_url }}">{{ short_url }}</a></p> <p><strong>Оригинал:</strong> <a href="{{ long_url }}">{{ long_url }}</a></p> <p class="count">Всего переходов: {{ total }}</p> </div> <h2>Последние переходы</h2> {% if history %} <table> <thead> <tr> <th>Время</th> <th>IP</th> <th>User-Agent</th> </tr> </thead> <tbody> {% for visit in history %} <tr> <td>{{ visit.time }}</td> <td>{{ visit.ip }}</td> <td>{{ visit.user_agent }}</td> </tr> {% endfor %} </tbody> </table> {% else %} <p class="empty">Переходов пока нет.</p> {% endif %} </body> </html>