{{define "admin/index.html"}} {{template "header" .}}

管理后台

{{.Stats.TodayViews}}
今日浏览
{{.Stats.TotalViews}}
总浏览次数
{{.Stats.NewIPs}}
今日新IP
{{.Stats.TotalIPs}}
总IP数量

实时流量

{{if .RecentLogs}} {{range .RecentLogs}} {{end}}
时间 IP 类型 详情 客户端
{{.CreatedAt.Format "15:04:05"}} {{.IP}} {{if eq .ActionType "visit"}}访问 {{else if eq .ActionType "click"}}点击 {{else if eq .ActionType "search"}}搜索 {{else}}{{.ActionType}}{{end}} {{if .Detail}}{{.Detail}}{{else}}—{{end}} {{.UserAgent}}
{{else}}

暂无访问记录

{{end}} {{if .IPStats}}

IP 访问排行 (Top 10)

{{range .IPStats}} {{end}}
IP地址 访问次数 最后访问
{{.IP}} {{.Visits}} {{.LastSeen}}
{{end}}
{{template "footer" .}} {{end}}