diff --git a/app/templates/my_books.html b/app/templates/my_books.html index 6b50578..ab47036 100644 --- a/app/templates/my_books.html +++ b/app/templates/my_books.html @@ -18,7 +18,7 @@
Género: {{ item[12] }}
Editorial: {{ item[11] }}
Año: {{ item[2] }}
-¿Leído?: {% if item[4] %}{%else%}{%endif%}
-¿Prestado?: {% if item[5] %}{%else%}{%endif%}
+¿Leído?: {% if item[4] %}✔️{%else%}✖️{%endif%}
+¿Prestado?: {% if item[5] %}✔️{%else%}✖️{%endif%}
Número de páginas: {{ item[3] }}
-Puntuación: {{ item[6] * '' |safe}}
+Puntuación: {{ item[6] * '⭐' |safe}}
Título | +Autor | Puntuación | Género | -Autor |
---|---|---|---|---|
{{ book.title }} | -{{ book.rating * '' |safe }} | {{ book.author_name }} | +{{ book.rating * '⭐' |safe }} | {{ book.genre_name }} |
{{ book.title }} | {{book.author_name}} | -{{ book.rating * '' |safe }} | +{{ book.rating * '⭐' |safe }} | {{ book.editorial_name }} |