Browse Source

Arreglo en template

politica
Celestino Rey 8 months ago
parent
commit
c15a9ed2cc
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      JugarAlPadel/K8S/Makefile
  2. +1
    -1
      JugarAlPadel/gestion_reservas/templates/eventos/detalle_evento.html
  3. +1
    -1
      JugarAlPadel/gestion_reservas/templates/eventos/lista_eventos.html

+ 1
- 1
JugarAlPadel/K8S/Makefile View File

@ -1,7 +1,7 @@
export ARQUITECTURA := $(shell lscpu |grep itectur | tr -d ' '| cut -f2 -d':')
export REGISTRY=registry.reymota.es
export IMG_VERSION = 0.70.43
export IMG_VERSION = 0.70.44
export IMG_NGINX_VERSION = 2.3
# limpia todo


+ 1
- 1
JugarAlPadel/gestion_reservas/templates/eventos/detalle_evento.html View File

@ -43,7 +43,7 @@
</div><!--//row-->
<div class="col-auto">
{% if not evento_es_pasado %}
{% if not evento.evento_es_pasado %}
{% if evento.evento.publicado or user.is_staff %} <!-- Solo mostrar eventos publicados a usuarios -->
{% if not evento.inscrito %}
{% if evento.plazas_restantes > 0 %}


+ 1
- 1
JugarAlPadel/gestion_reservas/templates/eventos/lista_eventos.html View File

@ -62,7 +62,7 @@
</div>
<div class="d-grid gap-2 d-md-block">
{% if not evento_es_pasado %}
{% if not evento.evento_es_pasado %}
{% if not evento.inscrito %}
{% if evento.plazas_restantes > 0 %}
<a class="btn btn-primary" href="{% url 'eventos:reservar_evento' evento.id %}">Reservar</a>


Loading…
Cancel
Save