{% extends 'base.html' %} {% load static %} {% block menuapp %} {% endblock menuapp %} {% block content %}
{% if messages %}
    {% for message in messages %} {% endfor %}
{% endif %}
{% for evento in eventos %}

{{ evento.nombre }}

{{ evento.descripcion }}
  • Fecha: {{ evento.fecha }}
  • a las {{ evento.hora }}
  • |
  • Precio {{ evento.precio }} €
  • |
  • Plazas: {{ evento.plazas_disponibles }}. Quedan: {{ evento.plazas_restantes }}
  • |
  • Lugar: {{ evento.lugar.nombre }}
{% if evento.evento.publicado or user.is_staff %} {% if not evento.inscrito %} {% if evento.plazas_restantes > 0 %} {% if evento.para_parejas %} Reservar {% else %} Reservar {% endif %} {% else %} {% if not evento.en_espera %} {% if evento.para_parejas %} Apuntar pareja la lista de espera {% else %} Apuntarse a la lista de espera {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% if user.is_staff and not evento.evento.publicado %} Publicar {% endif %} {% if user.is_staff and evento.evento.publicado %} 📧 Enviar correo a inscritos {% endif %}
{% if evento.url_imagen %}
Imagen de {{ evento.nombre }}
{% endif %}
{% if reservas %} {% if evento.para_parejas %}{% endif %} {% for reserva in reservas %} {% if reserva.iniciador %} {% if reserva.acompanante %} {% endif %} {% endif %} {% endfor %}
ApuntadosAcompañante
{{ reserva.usuario.nombre }}{{ reserva.acompanante.nombre }}
{% else %}

No hay nadie apuntado

{% endif %} {% if lista %}

{% for l in lista %} {% endfor %}
Lista de espera En lista desde...
{{ l.usuario.nombre }} {% if l.acompanante %} y {{l.acompanante.nombre}} {% endif %} {{ l.fecha_apuntado }}
{% endif %}
{% endfor %} {% endblock %}