You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
1.2 KiB

{% extends "layout.html" %}
{% block content %}
<h1>Lista de repostajes</h1>
<a href="{{ url_for('add_repostaje') }}" class="btn btn-primary">Añadir repostaje</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Fecha</th>
<th>Vehículo</th>
<th>Kilómetros</th>
<th>Litros</th>
<th>Descuento</th>
<th>Precio por litro</th>
<th>Importe</th>
</tr>
</thead>
<tbody>
{% for repostajes in repostajes %}
<tr>
<td>{{ repostajes.identificador }}</td>
<td>{{ repostajes.fecha }}</td>
<td>{{ repostajes.vehiculo }}</td>
<td>{{ repostajes.kms }}</td>
<td>{{ repostajes.litros }}</td>
<td>{{ repostajes.descuento }}</td>
<td>{{ repostajes.precioxlitro }}</td>
<td>{{ repostajes.importe }}</td>
<td>
<a href="{{ url_for('edit_repostaje', id=repostajes.identificador) }}" class="btn btn-warning">Edit</a>
<a href="{{ url_for('delete_repostaje', id=repostajes.identificador) }}" class="btn btn-danger">Delete</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}