Files
jiang13-forum/templates/admin/dashboard.tmpl
2026-08-29 17:47:09 +08:00

23 lines
888 B
Cheetah
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{define "admin/dashboard"}}
{{template "base/head" .}}
{{template "base/navbar" .}}
<main class="j13-main j13-admin">
<h1>管理后台</h1>
{{template "admin/nav" .}}
{{template "base/alert" .}}
<ul class="j13-admin-stats">
<li><strong>{{.UserCount}}</strong><span>用户</span></li>
<li><strong>{{.PostCount}}</strong><span>已发布帖</span></li>
<li><strong>{{.BoardCount}}</strong><span>板块</span></li>
<li><strong>{{.PendingPosts}}</strong><span>待审帖</span></li>
<li><strong>{{.PendingComments}}</strong><span>待审评</span></li>
<li><strong>{{.PendingReports}}</strong><span>待处理举报</span></li>
</ul>
<p class="j13-muted">
有待审内容时请前往 <a href="/admin/moderation">内容审核</a>
有举报时请前往 <a href="/admin/reports">举报处理</a>。
</p>
</main>
{{template "base/footer" .}}
{{end}}