bookwyrm/fedireads/templates/book.html
2020-02-15 11:13:49 -08:00

33 lines
1 KiB
HTML

{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div id="content">
<div>
<div class="book-preview">
{% include 'snippets/book.html' with book=book size=large rating=rating description=True %}
</div>
</div>
<div class="reviews">
<h2>Reviews</h2>
{% if not reviews %}
<p>No reviews yet!</p>
{% endif %}
<form class="review-form" name="review" action="/review/" method="post">
{% csrf_token %}
<input type="hidden" name="book" value="{{ book.openlibrary_key }}"></input>
{{ review_form.as_p }}
<button type="submit">Post review</button>
</form>
{% for review in reviews %}
<div class="review">
<h4>{{ review.name }}
<small>{{ review.rating | stars }} stars, by {% include 'snippets/username.html' with user=review.user %}</small>
</h4>
<blockquote>{{ review.content }}</blockquote>
</div>
{% endfor %}
</div>
</div>
{% endblock %}