{% extends "base.html" %} {% block title %}Book store{% endblock %} {% block content %}
{{ forloop.counter }} | {{ book.title }} (pag. {{ book.pages }}) | {% for author in book.authors.all %} {{ author }} {% if not forloop.last %},{% endif %} {% endfor %} | {{ book.publisher }} | {{ book.publication_date|date:"d/m/Y" }} | {% if book.in_stock %}![]() |
{% else %}
![]() |
{% endif %}