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.
 
 
 
 
 

46 lines
1.8 KiB

{% extends 'base.html' %}
{% block menuapp %}
{% endblock menuapp %}
{% block content %}
<div class="container-xl">
<div class="app-card app-card-notification shadow-sm mb-4">
<div class="app-card-header px-4 py-3">
<div class="row g-3 align-items-center">
<div class="col-12 col-lg-auto text-center text-lg-start">
<h4 class="notification-title mb-1">{{ evento.nombre }}</h4>
<ul class="notification-meta list-inline mb-0">
<li class="list-inline-item">{{ evento.descripcion }}</li>
<li class="list-inline-item">|</li>
<li class="list-inline-item">{{ evento.fecha }}</li>
<li class="list-inline-item">|</li>
<li class="list-inline-item">Plazas disponibles: {{ evento.plazas_restantes }}</li>
</ul>
</div><!--//col-->
</div><!--//row-->
</div><!--//app-card-header-->
<div class="row g-3 align-items-center">
<div class="col-12 col-lg-auto text-center text-lg-start">
<table class="table app-table-hover mb-0 text-left">
<thead>
<tr>
<th class="cell">Nombre</th>
</tr>
</thead>
<tbody>
{% for reserva in reservas %}
<tr>
<td class="cell">{{ reserva.usuario.nombre }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div><!--//app-card-->
{% endblock %}