| # |
Fecha |
Vehículo |
Kilómetros |
Litros |
Descuento |
Precio/litro |
Importe |
{% for libro in libros %}
| {{ libro.id }} |
{{ libro.fecha }} |
{{ libro.autores.matricula }} |
{{ "%.0f"|format(libro.kms) }} |
{{ "%.2f €"|format(libro.litros) }} |
{{ "%.2f €"|format(libro.descuento) }} |
{{ "%.2f €"|format(libro.precioxlitro) }} |
{{ "%.2f €"|format(libro.importe) }} |
{% 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.apellidos }} |
{% if row.foto %}
 }}) |
{% else %}
Sin imagen
{% endif %}
{% endfor %}