lib.itmens/social/templates/event/mentioned_shelfmember.html

13 lines
498 B
HTML
Raw Permalink Normal View History

2024-04-20 12:54:46 -04:00
{% load i18n %}
2024-04-19 20:24:34 -04:00
{% load duration %}
2024-04-20 12:54:46 -04:00
{% blocktrans with item_url=event.item.url item_title=event.item.display_title %}
replied to your mark on <a href="{{ item_url }}">{{ item_title }}</a>
{% endblocktrans %}
2024-04-19 20:24:34 -04:00
<blockquote class="tldr" _="on click toggle .tldr on me">
<span>
{% if event.piece.mark.rating_grade %}{{ event.piece.mark.rating_grade|rating_star }}{% endif %}
</span>
{{ event.piece.mark.comment.html|safe }}
</blockquote>
2024-04-20 12:54:46 -04:00
{% include "event/_post.html" with post=event.reply %}