|
|
|
@ -44,7 +44,11 @@ |
|
|
|
<tbody> |
|
|
|
{% for evento in eventos_con_reserva %} |
|
|
|
<tr> |
|
|
|
{% if evento.evento.publicado %} |
|
|
|
<td class="cell"><a href="{% url 'eventos:detalle_evento' evento.id %}">{{ evento.nombre }}</a></td> |
|
|
|
{% else %} |
|
|
|
<td class="cell"><a href="{% url 'eventos:detalle_evento' evento.id %}">{{ evento.nombre }} (NO PUBLICADO)</a></td> |
|
|
|
{% endif %} |
|
|
|
<td class="cell">{{ evento.fecha }}</td> |
|
|
|
<td class="cell">{{ evento.hora }}</td> |
|
|
|
<td class="cell">{{ evento.plazas_disponibles }}</td> |
|
|
|
|