Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 108005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:50:37+00:00 2026-05-11T01:50:37+00:00

I have some stuff in settings.py that I’d like to be able to access

  • 0

I have some stuff in settings.py that I’d like to be able to access from a template, but I can’t figure out how to do it. I already tried

{{CONSTANT_NAME}} 

but that doesn’t seem to work. Is this possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T01:50:38+00:00Added an answer on May 11, 2026 at 1:50 am

    Django provides access to certain, frequently-used settings constants to the template such as settings.MEDIA_URL and some of the language settings if you use django’s built in generic views or pass in a context instance keyword argument in the render_to_response shortcut function. Here’s an example of each case:

    from django.shortcuts import render_to_response from django.template import RequestContext from django.views.generic.simple import direct_to_template  def my_generic_view(request, template='my_template.html'):     return direct_to_template(request, template)  def more_custom_view(request, template='my_template.html'):     return render_to_response(template, {}, context_instance=RequestContext(request)) 

    These views will both have several frequently used settings like settings.MEDIA_URL available to the template as {{ MEDIA_URL }}, etc.

    If you’re looking for access to other constants in the settings, then simply unpack the constants you want and add them to the context dictionary you’re using in your view function, like so:

    from django.conf import settings from django.shortcuts import render_to_response  def my_view_function(request, template='my_template.html'):     context = {'favorite_color': settings.FAVORITE_COLOR}     return render_to_response(template, context) 

    Now you can access settings.FAVORITE_COLOR on your template as {{ favorite_color }}.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class that after it does some stuff, sends a JMS message.
I have some UI in VB 2005 that looks great in XP Style, but
I have some classes layed out like this class A { public virtual void
As everyone knows, sometimes developers have to document stuff. Or capture some stuff for
We have some input data that sometimes appears with &nbsp characters on the end.
I have some code like this in a winforms app I was writing to
I have some settings in my app.config which I intend to be 'global' -
I am trying to figure out how I want to handle settings in my
I have some ASP.NET web services which all share a common helper class they
I have some code for starting a thread on the .NET CF 2.0: ThreadStart

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.