I am from PHP background, and I know that constants can be accessed at most of places in a framework and I think it is same in django as well. I tried to have that URL too in django but I tried to have it from django.contrib. I tried to utilize django’s Site class and imported that. But the problem is that at time of loading settings.py I can’t import any django contrib. file.
So how can I have SITE URL automatically that I can use anywhere, in template as well as at other places.What is the best way to do so? Do any python utility can do so?
Whatever you define in your settings.py, for example
Can be accessed in all your Django related code with:
Or just
Site.objects.get_current().domainIf you want to be able to access it in the templates, you make your own template context processor. Put this in my_project/content_processor.py
Or if you want it Dynamic:
And add it to your TEMPLATE_CONTEXT_PROCESSORS variable in settings.py. It should look similar to that afterwards:
and finished.