diff --git a/src/apps/billboard/tax.py b/src/apps/billboard/tax.py index 49ab734..9e51567 100644 --- a/src/apps/billboard/tax.py +++ b/src/apps/billboard/tax.py @@ -42,11 +42,11 @@ from apps.lyric.models import get_or_create_taxman # `Line.display_text|safe` in post.html (the system-author branch). TAX_DEBIT_TEMPLATES = { "free_draw_locked": ( - 'Look!—my_sea.html FREE DRAW ' + 'Look!—My Sea\'s FREE DRAW ' 'is locked. Next free draw available 24h from the production of this log.' ), "paid_draw_locked": ( - 'Look!—my_sea.html PAID DRAW ' + 'Look!—My Sea\'s PAID DRAW ' 'is locked. Another may be unlocked by depositing a Token in ' 'GATE VIEW.' ), diff --git a/src/templates/apps/billboard/_partials/_my_posts_applet_item.html b/src/templates/apps/billboard/_partials/_my_posts_applet_item.html index e8d89a9..5912fb1 100644 --- a/src/templates/apps/billboard/_partials/_my_posts_applet_item.html +++ b/src/templates/apps/billboard/_partials/_my_posts_applet_item.html @@ -4,7 +4,11 @@
  • {{ item.title|truncate_title }} {% if item.latest_line %} - {{ item.latest_line.text|striptags }} + {# `display_text` strips the `[] ` prefix that #} + {# TAX_LEDGER Lines carry to satisfy `unique_together = (post, text)` #} + {# — the per-line `created_at` slot below already renders the user- #} + {# facing timestamp (user-spec 2026-05-26). Identity for other kinds. #} + {{ item.latest_line.display_text|striptags }} {% endif %}