2012-07-09 15:33:21 +00:00
{% extends "notification/notice_template.html" %}
2012-03-29 18:46:06 +00:00
{% with comment.content_object.id as id %}
{% with comment.user as user %}
2012-07-09 19:47:38 +00:00
{% url work id as work_url %}
{% url supporter supporter_username=user as supporter_url %}
2012-03-29 18:46:06 +00:00
2012-07-09 15:33:21 +00:00
{% block comments_book %}
2012-07-09 19:47:38 +00:00
< a href = "{{ work_url }}?tab=2" > < img src = "{{ comment.content_object.cover_image_small }}" alt = "cover image for {{ comment.content_object.title }}" / > < / a >
2012-07-09 15:33:21 +00:00
{% endblock %}
2012-05-15 01:42:46 +00:00
2012-07-09 15:33:21 +00:00
{% block comments_graphical %}
2012-07-09 19:47:38 +00:00
< span > < a href = "{{ supporter_url }}" > {{ comment.user.username }}< / a > has made a comment on < a href = "{{ work_url }}?tab=2" > {{ comment.content_object.title }}< / a > .< / span >
2012-07-09 15:33:21 +00:00
{% endblock %}
2012-05-15 01:42:46 +00:00
2012-07-09 15:33:21 +00:00
{% block comments_textual %}
{{ comment.comment|linebreaksbr }}
{% endblock %}
2012-03-29 18:46:06 +00:00
{% endwith %}
{% endwith %}