bookwyrm/fedireads/templates/book.html

44 lines
1.5 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">
{% include 'snippets/book.html' with book=book size=large rating=rating description=True shelf_pulldown=True %}
2020-01-29 01:23:38 +00:00
</div>
2020-02-21 06:19:19 +00:00
<div id="tag-cloud">
{% for tag in tags %}
{% include 'snippets/tag.html' with tag=tag user=request.user %}
{% endfor %}
</div>
<form class="tag-form" name="tag" action="/tag/" method="post">
{% csrf_token %}
<input type="hidden" name="book" value="{{ book.openlibrary_key }}"></input>
{{ tag_form.as_p }}
<button type="submit">Add tag</button>
</form>
2020-02-21 06:19:19 +00:00
</div>
<div class="reviews">
<h2>Reviews</h2>
{% 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 }}
<small>{{ review.rating | stars }} stars, by {% include 'snippets/username.html' with user=review.user %}</small>
2020-01-29 01:29:02 +00:00
</h4>
<blockquote>{{ review.content }}</blockquote>
2020-01-29 01:29:02 +00:00
</div>
2020-01-28 02:47:54 +00:00
{% endfor %}
</div>
</div>
{% endblock %}