mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-18 23:51:10 +00:00
43 lines
1.7 KiB
HTML
43 lines
1.7 KiB
HTML
{% load fr_display %}
|
|
<div class="update">
|
|
{% if activity.status_type == 'Review' %}
|
|
{% include 'snippets/status_banner.html' with content="reviewed <i>"|add:activity.book.data.title|add:"</i>" %}
|
|
<div class="book-preview review">
|
|
{% include 'snippets/book.html' with book=activity.book size=large %}
|
|
|
|
<h3>{{ activity.name }}</h3>
|
|
<p>{{ activity.rating | stars }}</p>
|
|
<p>{{ activity.content | safe }}</p>
|
|
</div>
|
|
<div class="interaction">
|
|
{% if activity.favorites.all %}
|
|
<span>
|
|
{{ activity.favorites.count }} like(s)
|
|
</span>
|
|
{% endif %}
|
|
<form name="favorite" action="/favorite/{{ activity.id }}" method="post">
|
|
{% csrf_token %}
|
|
<button>⭐️ Like</button>
|
|
</form>
|
|
<form name="comment" action="/comment" method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="review" value="{{ activity.id }}"></input>
|
|
{{ comment_form.content }}
|
|
<button type="submit">Comment</button>
|
|
</form>
|
|
</div>
|
|
{% elif activity.status_type == 'Note' %}
|
|
{% include 'snippets/status_banner.html' %}
|
|
<span>{{ activity.content | safe }}</span>
|
|
{% for book in activity.mention_books.all %}
|
|
<div class="book-preview review">
|
|
{% include 'snippets/book.html' with book=book size=large description=True %}
|
|
</div>
|
|
{% endfor %}
|
|
{% else %}
|
|
{# generic handling for a misc activity, which perhaps should not be displayed at all #}
|
|
did {{ activity.activity_type }}
|
|
</h2>
|
|
{% endif %}
|
|
</div>
|
|
|