bookshelf-management/bookshelf_management/apps/mgmt/templates/bookshelfList.html

23 lines
782 B
HTML
Raw Normal View History

2021-01-13 22:52:23 +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">All Bookshelves</h1>
2021-01-13 22:52:23 +00:00
2021-02-23 21:25:40 +00:00
<strong class="heading-info">Number of Bookshelves:</strong> <p>{{ total }}</p>
2021-01-13 22:52:23 +00:00
{% if bookshelves %}
<ul>
{% for bookshelf in bookshelves %}
<li class="bookshelf" id="bookshelf-{{ bookshelf.id }}">
<a href="/bookshelves/{{ bookshelf.id }}">{{ bookshelf.bookshelf }}</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>No bookshelves found.</p>
{% endif %}
{% load static %}
<link rel="stylesheet" href="{% static 'style.css' %}"></script>
{% endblock %}