fix(postcards): move notes to right side before action buttons in list, use dl grid format in detail page

This commit is contained in:
2026-07-06 21:13:01 +08:00
parent e75c4df4e8
commit e7b109ab6d
3 changed files with 6 additions and 7 deletions

View File

@@ -60,10 +60,10 @@
<dt>收到时间</dt><dd>{{ postcard.receive_time.strftime('%Y-%m-%d') if postcard.receive_time else '-' }}</dd>
{% endif %}
<dt>所属 Profile</dt><dd>{{ postcard.profile.nickname }}</dd>
{% if postcard.notes %}
<dt>备注</dt><dd>{{ postcard.notes }}</dd>
{% endif %}
</dl>
{% if postcard.notes %}
<div class="detail-notes">{{ postcard.notes }}</div>
{% endif %}
</div>
</div>
{% endblock %}