Browse Source

Merge branch 'main' of https://gogs.reymota.es/creylopez/AppsPy into main

politica
Celestino Rey 1 year ago
parent
commit
e9653234cc
4 changed files with 16 additions and 3 deletions
  1. +1
    -1
      JugarAlPadel/K8S/Makefile
  2. +1
    -1
      JugarAlPadel/K8S/Makefile.local
  3. +1
    -1
      JugarAlPadel/gestion_reservas/templates/404.html
  4. +13
    -0
      JugarAlPadel/gestion_reservas/templates/500.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.20
export IMG_VERSION = 0.21
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.54
export IMG_VERSION = 0.56
export IMG_NGINX_VERSION = 2.4
# limpia todo


+ 1
- 1
JugarAlPadel/gestion_reservas/templates/404.html View File

@ -7,7 +7,7 @@
<div class="mb-4">
Lo siento, no hemos podido encontrar la página que buscas.
</div>
<a class="btn app-btn-primary" href="{{ url_for('paginas.index') }}">Ir a la página de inicio</a>
<a class="btn app-btn-primary" href="{% url 'principal' %}">Ir a la página de inicio</a>
</div>
{% endblock %}


+ 13
- 0
JugarAlPadel/gestion_reservas/templates/500.html View File

@ -0,0 +1,13 @@
{% extends 'base.html' %}
{% block content %}
<div class="app-card p-5 text-center shadow-sm">
<h1 class="page-title mb-4">500<br><span class="font-weight-light">Problema en el servidor</span></h1>
<div class="mb-4">
Lo siento, ha habido un problema en el servidor.
</div>
<a class="btn app-btn-primary" href="{% url 'principal' %}">Ir a la página de inicio</a>
</div>
{% endblock %}

Loading…
Cancel
Save