{% extends 'admin/base.html' %}
{% block title %}访问统计{% endblock %}
{% block page_title %}访问统计{% endblock %}
{% block content %}
👁️
{{ stats.total_visits }}
总访问量
📅
{{ stats.today_visits }}
今日访问
🌐
{{ stats.unique_ips }}
独立访客
🔥 访问最多的IP (Top 10)
| IP地址 |
访问次数 |
首次访问 |
最近访问 |
{% for ip, count, first, last in top_ips %}
| {{ ip }} |
{{ count }} |
{{ first|datetime_format('%Y-%m-%d %H:%M') }} |
{{ last|datetime_format('%Y-%m-%d %H:%M') }} |
{% endfor %}
📊 热门文章 (最近7天)
| 文章标题 |
浏览次数 |
{% for article, views in top_articles %}
|
{{ article.title }}
|
{{ views }} |
{% endfor %}
📍 访问最多的路径
| 路径 |
访问次数 |
{% for path, count in top_paths %}
| {{ path }} |
{{ count }} |
{% endfor %}
{% endblock %}