{% extends 'base.html' %} {% load humanize %} {% load mi_filtro %} {% block menuapp %} {% include 'repostajes/_menu-repostajes.html' %} {% endblock menuapp %} {% block content %}

Repostajes

{% for repostaje in repostajes %} {% endfor %}
Fecha Vehículo Kilómetros Litros Importe Descuento Precio por litro Kms recorridos Consumo/100 kms
{{ repostaje.fecha }} {{ repostaje.vehiculo.matricula }} {{ repostaje.kms | no_currency }} {{ repostaje.litros | litros }} {{ repostaje.importe | currency_euros }} {{ repostaje.descuento | currency_euros }} {{ repostaje.precioxlitro | currency_euros }} {{ repostaje.kmsrecorridos | no_currency }} {{ repostaje.consumo | litros}}
{% endblock %}