regluit/frontend/templates/notification/comment_on_commented/notice.html

21 lines
708 B
HTML
Raw Normal View History

{% with comment.content_object.id as id %}
{% with comment.user as user %}
<div class="comments clearfix">
<div class="comments_book">
<a href="{% url work id %}?tab=2"><img src="{{ comment.content_object.cover_image_small }}" alt="cover image for {{ comment.content_object.title }}" /></a>
</div>
<div class="comments_info">
<div class="comments_graphical">
<span><a href="{% url supporter supporter_username=user %}">{{ comment.user.username }}</a> has made a comment on <a href="{% url work id %}?tab=2">{{ comment.content_object.title }}</a></span>
</div>
<div class="comments_textual">
{{ comment.comment|linebreaksbr }}
</div>
</div>
</div>
{% endwith %}
{% endwith %}