Browse Source

Mostrar la hora en listado de eventos

politica
Celestino Rey 1 year ago
parent
commit
9b463f364a
3 changed files with 3 additions and 2 deletions
  1. +1
    -1
      JugarAlPadel/K8S/Makefile
  2. +1
    -1
      JugarAlPadel/K8S/Makefile.local
  3. +1
    -0
      JugarAlPadel/gestion_reservas/eventos/views.py

+ 1
- 1
JugarAlPadel/K8S/Makefile View File

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


+ 1
- 1
JugarAlPadel/K8S/Makefile.local View File

@ -2,7 +2,7 @@ export ARQUITECTURA := $(shell lscpu |grep itectur | tr -d ' '| cut -f2 -d':')
export REGISTRY=localhost:30500
#export REGISTRY=registry.reymota.es
export IMG_VERSION = 0.62
export IMG_VERSION = 0.63
export IMG_NGINX_VERSION = 2.4
# limpia todo


+ 1
- 0
JugarAlPadel/gestion_reservas/eventos/views.py View File

@ -83,6 +83,7 @@ def lista_eventos(request):
'id': evento.id,
'nombre': evento.nombre,
'fecha': evento.fecha,
'hora': evento.hora,
'plazas_disponibles': evento.plazas_disponibles,
'plazas_restantes': evento.plazas_restantes,
'en_espera': en_espera,


Loading…
Cancel
Save