| # |
Fecha |
Título |
Autor |
Portada |
{% for libro in libros %}
| {{ libro.id }} |
{{ libro.fecha }} |
{{ libro.titulo }} |
{{ libro.autores.apellido }}, {{ libro.autores.nombre }} |
{% if libro.portada %}
 }}) |
{% else %}
Sin imagen
{% endif %}
{% endfor %}
{% for autor in autores %}
| # |
Fecha |
Título |
Autor |
Portada |
{% for libro in libros %}
{% if libro.autor_id == autor.id %}
| {{ libro.id }} |
{{ libro.fecha }} |
{{ libro.titulo }} |
{{ libro.autores.apellido }}, {{ libro.autores.nombre }} |
{% if libro.portada %}
 }}) |
{% else %}
Sin imagen
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
| # |
Nombre |
Apellido |
Foto |
{% for row in autores %}
| {{ row.id }} |
{{ row.nombre }} |
{{ row.apellido }} |
{% if row.foto %}
 }}) |
{% else %}
Sin imagen
{% endif %}
{% endfor %}