nacataquillas/templates/ver_alquileres.html

32 lines
704 B
HTML

{% extends "base.html" %}
{% block title %}
Alquileres
{% endblock %}
{% block content %}
<table>
<tr>
<th>ID de taquilla</th>
<th>Nombre de usuario</th>
<th>DNI</th>
<th>Validez</th>
<th>Acciones</th>
</tr>
{% for alquiler in alquileres %}
<tr>
<td>{{ alquiler.taquilla }}</td>
<td>{{ alquiler.nombre_persona }}</td>
<td>{{ alquiler.dni_persona }}</td>
<td>{{ alquiler.validez }}</td>
<td>
<a href="/renovar/{{ alquiler.id_taquilla }}">Renovar</a>
<a href="/confirmar-baja/{{ alquiler.id_taquilla }}">Baja</a>
</td>
</tr>
{% endfor %}
</table>
{% endblock %}