From d38406e75996aded37d64d17ac07bd462dc3c4b8 Mon Sep 17 00:00:00 2001 From: Boris Quiroz Date: Tue, 21 May 2024 21:52:40 -0400 Subject: [PATCH] Use proper object names instead of ids --- app/templates/show_book.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/app/templates/show_book.html b/app/templates/show_book.html index 6e77ebb..2e90779 100644 --- a/app/templates/show_book.html +++ b/app/templates/show_book.html @@ -7,22 +7,22 @@ {% with rating = item[6] %}
-

{{ item[1] }}

-

{{ item[9] }} ({{ item[10] }})

+

{{ item.title }}

+

{{ item.author_name }} ({{ item.author_country }})

-

Género: {{ item[13] }}

-

Editorial: {{ item[12] }}

-

Año: {{ item[2] }}

-

¿Leído?: {% if item[4] %}✔️{%else%}✖️{%endif%}

-

¿Prestado?: {% if item[5] %}✔️{%else%}✖️{%endif%}

-

Número de páginas: {{ item[3] }}

+

Género: {{ item.genre_name }}

+

Editorial: {{ item.editorial_name }}

+

Año: {{ item.year }}

+

¿Leído?: {% if item.read %}✔️{%else%}✖️{%endif%}

+

¿Prestado?: {% if item.shared %}✔️{%else%}✖️{%endif%}

+

Número de páginas: {{ item.pages }}

Puntuación: {{ rating * '⭐' |safe}}{{ (5 - rating) * '⚝' |safe }}

-

ISBN: {{ item[9] }}

+

ISBN: {{ item.isbn }}

Tags: - {% set tag_list = item[8].split(', ')%} + {% set tag_list = item.tags.split(', ')%}

    {% for tag in tag_list %}
  • {{tag}}