From 9b463f364a1d951755f696191bc5aa354708d601 Mon Sep 17 00:00:00 2001 From: Celestino Rey Date: Fri, 18 Oct 2024 10:03:05 +0000 Subject: [PATCH] Mostrar la hora en listado de eventos --- JugarAlPadel/K8S/Makefile | 2 +- JugarAlPadel/K8S/Makefile.local | 2 +- JugarAlPadel/gestion_reservas/eventos/views.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/JugarAlPadel/K8S/Makefile b/JugarAlPadel/K8S/Makefile index 9906902..092f5b7 100644 --- a/JugarAlPadel/K8S/Makefile +++ b/JugarAlPadel/K8S/Makefile @@ -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 diff --git a/JugarAlPadel/K8S/Makefile.local b/JugarAlPadel/K8S/Makefile.local index 5e73822..18223f9 100644 --- a/JugarAlPadel/K8S/Makefile.local +++ b/JugarAlPadel/K8S/Makefile.local @@ -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 diff --git a/JugarAlPadel/gestion_reservas/eventos/views.py b/JugarAlPadel/gestion_reservas/eventos/views.py index c1d9423..5507875 100644 --- a/JugarAlPadel/gestion_reservas/eventos/views.py +++ b/JugarAlPadel/gestion_reservas/eventos/views.py @@ -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,