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

14 lines
624 B
HTML
Raw Normal View History

2015-04-28 03:24:02 +00:00
{% extends 'notification/notice_template.html' %}
2016-05-11 14:41:50 +00:00
{% block comments_book %}
2015-04-28 03:24:02 +00:00
<a href="{% url 'work' comment.content_object.id %}?tab=2"><img src="{{ comment.content_object.cover_image_small }}" alt="cover image for {{ comment.content_object.title }}" /></a>
{% endblock %}
{% block comments_graphical %}
2015-04-28 03:24:02 +00:00
<span><a href="{% url 'supporter' comment.user.username %}">{{ comment.user.username }}</a> has made a comment on <a href="{% url 'work' comment.content_object.id %}?tab=2">{{ comment.content_object.title }}</a>.</span>
{% endblock %}
{% block comments_textual %}
{{ comment.comment|linebreaksbr }}
{% endblock %}