16 lines
736 B
HTML
16 lines
736 B
HTML
{% extends "notification/notice_template.html" %}
|
|
{% block comments_book %}
|
|
<a href="{% url work work.id %}">
|
|
<img src="{{ work.cover_image_small }}" alt="cover image for {{ work.title }}" />
|
|
</a>
|
|
{% endblock %}
|
|
{% block comments_graphical %}
|
|
<a href="{% url supporter sender %}">
|
|
<img class="user-avatar" src="{{ sender.profile.avatar_url }}" height="50" width="50" alt="Avatar for {{ sender }}" title="{{ sender }}" />
|
|
</a>
|
|
<span>Message from <a href="{% url supporter sender %}">{{ sender.username }}</a> {% if sender.is_staff %} (Unglue.it staff) {% endif %} on <a href="{% url work work.id %}">{{ work.title }}</a></span>
|
|
{% endblock %}
|
|
{% block comments_textual %}
|
|
{{ msg }}
|
|
{% endblock %}
|