Browse Source

Indico si pozo está en no publicado

politica
Celestino Rey 1 year ago
parent
commit
2f9366ee3d
3 changed files with 6 additions and 2 deletions
  1. +1
    -1
      JugarAlPadel/K8S/Makefile
  2. +1
    -1
      JugarAlPadel/K8S/Makefile.local
  3. +4
    -0
      JugarAlPadel/gestion_reservas/templates/eventos/lista_eventos.html

+ 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.23
export IMG_VERSION = 0.24
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.60
export IMG_VERSION = 0.61
export IMG_NGINX_VERSION = 2.4
# limpia todo


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

@ -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>


Loading…
Cancel
Save