feat(postcards): add notes field to postcards with edit, detail, and truncated list display

This commit is contained in:
2026-07-06 21:07:28 +08:00
parent f6db3a4f55
commit 68c88a7910
6 changed files with 16 additions and 0 deletions

View File

@@ -61,6 +61,9 @@
{% endif %}
<dt>所属 Profile</dt><dd>{{ postcard.profile.nickname }}</dd>
</dl>
{% if postcard.notes %}
<div class="detail-notes">{{ postcard.notes }}</div>
{% endif %}
</div>
</div>
{% endblock %}