bookwyrm/fedireads/templates/book.html

33 lines
1 KiB
HTML
Raw Normal View History

2020-01-28 02:47:54 +00:00
{% extends 'layout.html' %}
2020-01-29 23:10:32 +00:00
{% load fr_display %}
2020-01-28 02:47:54 +00:00
{% block content %}
2020-01-29 01:23:38 +00:00
<div id="content">
<div>
<div class="book-preview">
2020-02-11 05:09:04 +00:00
{% include 'book_snippet.html' with book=book size=large rating=rating description=True %}
2020-01-29 01:23:38 +00:00
</div>
2020-01-28 02:47:54 +00:00
</div>
<div class="reviews">
<h2>Reviews</h2>
2020-01-28 07:20:32 +00:00
{% if not reviews %}
<p>No reviews yet!</p>
{% endif %}
2020-01-29 23:32:43 +00:00
<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>
2020-01-28 02:47:54 +00:00
{% for review in reviews %}
2020-01-29 01:29:02 +00:00
<div class="review">
<h4>{{ review.name }}
2020-01-29 23:10:32 +00:00
<small>{{ review.rating | stars }} stars, by {{ review.user.username }}</small>
2020-01-29 01:29:02 +00:00
</h4>
<blockquote>{{ review.review_content }}</blockquote>
</div>
2020-01-28 02:47:54 +00:00
{% endfor %}
</div>
</div>
{% endblock %}