{% 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)

{% for ip, count, first, last in top_ips %} {% endfor %}
IP地址 访问次数 首次访问 最近访问
{{ ip }} {{ count }} {{ first|datetime_format('%Y-%m-%d %H:%M') }} {{ last|datetime_format('%Y-%m-%d %H:%M') }}

📊 热门文章 (最近7天)

{% for article, views in top_articles %} {% endfor %}
文章标题 浏览次数
{{ article.title }} {{ views }}

📍 访问最多的路径

{% for path, count in top_paths %} {% endfor %}
路径 访问次数
{{ path }} {{ count }}
{% endblock %}