2021-02-17 00:04:53 +00:00
|
|
|
{% extends "generic_template.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
2021-02-23 21:25:40 +00:00
|
|
|
<h1 class="title">{{bookName}}</h1>
|
|
|
|
<h2 class="subheading">Bookshelves this book belongs to:</h2>
|
2021-02-17 00:04:53 +00:00
|
|
|
|
2021-02-23 21:25:40 +00:00
|
|
|
<strong class="heading-info">Number of bookshelves it belongs to:</strong> <p>{{ total }}</p>
|
2021-02-17 00:04:53 +00:00
|
|
|
|
|
|
|
{% if bookshelves %}
|
|
|
|
<ul>
|
|
|
|
{% for bookshelf in bookshelves %}
|
2021-02-23 21:25:40 +00:00
|
|
|
<li class="bookshelf">
|
2021-02-17 00:04:53 +00:00
|
|
|
<a href="/bookshelves/{{ bookshelf.id }}">{{ bookshelf.bookshelf }}</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% else %}
|
|
|
|
<p>This book is not in any bookshelves.</p>
|
|
|
|
{% endif %}
|
|
|
|
{% load static %}
|
|
|
|
<script src="{% static 'booklist.js' %}"></script>
|
|
|
|
<link rel="stylesheet" href="{% static 'style.css' %}"></script>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|