Aplikacja do tworzenia recenzji książek
{% for item in book_list %}
-
Tytuł {{ item.book.title }}
Wydawnictwo: {{ item.book.publisher }}
Data wydania: {{ item.book.publication_date }}
Ocena: {{ item.book_rating }}
Liczba recenzji: {{ item.number_of_reviews }}
{% if item.book_rating is null %}
Napisz pierwszą recenzję.
{% endif %}
{% endfor %}