{% extends 'base.html' %} {% load static %} {% block content %}

{{ category }}

Explore all books in the "{{ category }}" category

{% for book in books %}
{{ book.title }}
{{ book.title }}

By: {{ book.author }}

Price: Ksh.{{ book.price }}

{% csrf_token %}
View
{% empty %}

No books available in this category.

{% endfor %}
← Back to All Books
{% endblock %}