bookwyrm/fedireads/templates/book.html
2020-01-29 01:25:56 -08:00

39 lines
1.2 KiB
HTML

{% extends 'layout.html' %}
{% block content %}
<div id="content">
<div>
<div class="book-preview">
<img class="book-cover" src="{% if book.cover %}/images/{{ book.cover }}{% else %}/static/images/no_cover.jpg{% endif %}">
<h1>{{ book.data.title }}</h1>
by {{ book.authors.first.data.name }}
{{ rating }} stars
<blockquote>{{ book.data.description }}</blockquote>
</div>
<h3>Leave a review</h3>
<form class="review-form" name="review" action="/review/" method="post">
<input type="hidden" name="book" value="{{ book.openlibrary_key }}"></input>
{{ review_form.as_p }}
<button type="submit">Post review</button>
</form>
</div>
<div class="reviews">
<h2>Reviews</h2>
{% if not reviews %}
<p>No reviews yet!</p>
{% endif %}
{% for review in reviews %}
<div class="review">
<h4>{{ review.name }}
<small>{{ review.rating }} stars, by {{ review.user.username }}</small>
</h4>
<blockquote>{{ review.review_content }}</blockquote>
</div>
{% endfor %}
</div>
</div>
{% endblock %}