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 6662115
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:21:20+00:00 2026-05-26T02:21:20+00:00

i have a weird problem. Basically, in my settings.py file i have 4 variables

  • 0

i have a weird problem.
Basically, in my settings.py file i have 4 variables

URL_MAIN = 'http://www.mysite'
URL_JOBS = 'http://jobs.mysite'
URL_CARS = 'http://cars.mysite'
URL_HOMES = 'http://homes.mysite'

In my views.py i have the usual:

from settings import *

I have 6 views calling them and just returning them to templates inside the context:

class CarsHp(TemplateView):
     ...

class JobsHp(TemplateView):
     ...

class HomesHp(TemplateView):
     ...

class CarsList(TemplateView):
     ...

class JobsList(TemplateView):
     ...

class HomesList(TemplateView):
     ...

which are being called in urls by

CarsList.as_view()
...

All of those views have the same statement:

context['URL_MAIN'] = URL_MAIN
...

for all 4 variables.

In templates i’m correctly getting all 4 of them, except for URL_MAIN, which “gets lost” in 2 of those 6 views. I’m accessing them with classical {{ URL_MAIN }} and i’ve been trying everything, from moving to renaming, but still that URL_MAIN doesn’t show up (i get empty string, no errors of sort) after being served from 2 of those views. All the functions basically share the same code (except for the querying and data processing part) and those settings’ variables are just being assigned and returned off. Not any sort of check nor modification. I’ve been trying with django’s shell, and i could always retrieve them.

We’re being served by apache, with some proxypassing configurations for the robots.txt file and static files. Nothing “serious”.

I’m not posting all the 6 views source codes just because they’re long and the relevant parts are all described above. But i can post them if you want,i just don’t know if it is actually useful since i’ve been triple checking all the sources for clashing on names or double declarations or incorrect use.

Thanks all in advance, this is really stunning my brain

  • 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. Editorial Team
    Editorial Team
    2026-05-26T02:21:21+00:00Added an answer on May 26, 2026 at 2:21 am

    Ideally, you should use template context processors for this. It will cut down your code and allow you to see exactly where the problem is.

    Make a file in your projects called urls_context_processor.py (or similar) and put your variables in there:

    def common_urls(request):
        return {
            'URL_MAIN': "http://...",
            'URL_JOBS': "http://...",
            'URL_CARS': "http://...",
            'URL_HOME': "http://...",
        }
    

    and in your settings.py

    TEMPLATE_CONTEXT_PROCESSORS = = (
          ....
          'my_project.urls_context_processor.common_urls',)
    

    now the urls variables will be automatically available in all your template, and you won’t need to hard code them into every view.

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

Sidebar

Related Questions

I have a weird problem with aRuby program I'm writing. Basically the idea is
I have a really weird problem. Basically just convert a char to nsstring and
i have a weird problem. i would like to delete an assembly(plugin.dll on harddisk)
I have a weird problem with images in visual web developer, I cant change
I have a weird problem where after setting nocheck on a foreign constraint and
I have this weird problem with setting up cookies with PHP. Everything worked fine
I have a weird problem that i can't figure out a solution for: I've
I have a weird problem, and I don't know if this is the default
Hey guys, I have a weird problem. I have an update system that refreshes
We have a weird intermittent problem with saving from Word 2007 to our SharePoint

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.