Files
mailova/app/templates/dashboard.html

41 lines
1.5 KiB
HTML
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.
{% extends "base.html" %}
{% block title %}Dashboard - Postcard Manager{% endblock %}
{% block content %}
<h1>👋 欢迎,{{ user.username }}</h1>
<section class="section">
{% if profiles %}
<div class="card-grid">
{% for p in profiles %}
<a href="/profiles/{{ p.id }}/postcards" class="card dashboard-card">
<div class="dc-header">
<span class="dc-icon">📮</span>
<h3>{{ p.nickname }}</h3>
</div>
<div class="dc-stats">
<div class="dc-stat">
<span class="dc-num">{{ stats[p.id].total }}</span>
<span class="dc-label">总计</span>
</div>
<div class="dc-stat">
<span class="dc-num dc-sent">{{ stats[p.id].sent }}</span>
<span class="dc-label">寄出</span>
</div>
<div class="dc-stat">
<span class="dc-num dc-delivered">{{ stats[p.id].delivered }}</span>
<span class="dc-label">送达</span>
</div>
<div class="dc-stat">
<span class="dc-num dc-received">{{ stats[p.id].received }}</span>
<span class="dc-label">收到</span>
</div>
</div>
</a>
{% endfor %}
</div>
{% else %}
<p class="empty">还没有 Profile<a href="/profiles">去创建一个</a></p>
{% endif %}
</section>
{% endblock %}