Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

208
Vistas
How can I access environment variables directly in a Django template?

I'm looking to do something like this non-working code in my Django template:

{% if os.environ.DJANGO_SETTINGS_MODULE == "settings.staging" %}

Is something like this possible? My workaround is creating a context processor to make the variable available across all templates, but wanted to know if there is a more direct way to achieve the same result.

about 4 years ago · Santiago Trujillo
2 Respuestas
Responde la pregunta

0

Use context_processor, do as below and you should be able to access os.environ['DJANGO_SETTINGS_MODULE'] as SETTING_TYPE in templates. Example you can use {% if SETTING_TYPE == "settings.staging" %}

project/context_processors.py

import os 

def export_vars(request):
    data = {}
    data['SETTING_TYPE'] = os.environ['DJANGO_SETTINGS_MODULE']
    return data

project/settings.py (your actual settings file)

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                 ...
                  'project.context_processors.export_vars',
                 ...
            ]
         }
      }
   ]
about 4 years ago · Santiago Trujillo Denunciar

0

Extending on @vinay kumar's comment, you can create a custom template filter in the following way:

application/template_tags_folder/template_tags_file.py

from django.template.defaulttags import register
import os

@register.filter
def env(key):
    return os.environ.get(key, None)

And then in your template you can access it this way:

template.html

{% if 'DJANGO_SETTINGS_MODULE'|env == 'app_name.staging_settings' %}

Finally I leave a django docs reference and a stackoverflow reference for creating custom template tags and filters in django.

about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda