From d776ce901d08162a727f42c1816bd520279d94ef Mon Sep 17 00:00:00 2001 From: Celestino Rey Date: Fri, 10 Jan 2025 11:28:18 +0100 Subject: [PATCH] =?UTF-8?q?A=C3=B1ado=20template=20de=20entorno?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- polls/templates/ver_entorno.html | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 polls/templates/ver_entorno.html diff --git a/polls/templates/ver_entorno.html b/polls/templates/ver_entorno.html new file mode 100644 index 0000000..589eb4e --- /dev/null +++ b/polls/templates/ver_entorno.html @@ -0,0 +1,39 @@ + +

Variables de Entorno y Configuración

+

Nota: Asegúrate de que esta página solo esté accesible para administradores, ya que contiene información sensible.

+ +

Variables de Entorno

+ + + + + + + + + {% for key, value in entorno.items %} + + + + + {% endfor %} + +
VariableValor
{{ key }}{{ value }}
+ +

Variables de Configuración (settings.py)

+ + + + + + + + + {% for key, value in configuracion.items %} + + + + + {% endfor %} + +
VariableValor
{{ key }}{{ value }}