Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hay, i was wondering how to get the current URL within a template.

Say my URL was

/user/profile/

How do i return this to the template?

Thanks

share|improve this question

3 Answers

up vote 93 down vote accepted

request.get_full_path

share|improve this answer
2  
Can i get it without passing the 'request' variable to the template? – dotty May 21 '10 at 13:39
6  
Just use request.path then – Brant May 21 '10 at 13:45
2  
I decided to use request.META['HTTP_REFERER'] to redirect them. – dotty May 21 '10 at 13:46
4  
The request is not always passed to the template. When using TemplateView in URLConf, the request does not get passed. – Koliber Services Oct 28 '11 at 13:39
9  
Way too short for a proper answer... Also, request is passed by a context processor which is not included by default, see my post below for a complete answer based on this solution. – RedGlyph Apr 15 '12 at 14:07
show 5 more comments

Some precisions and corrections should be brought to hypete's and Igancio's answers, I'll just summarize the whole idea here, for future reference.

If you need the request variable in the template, you must add the 'django.core.context_processors.request' to the TEMPLATE_CONTEXT_PROCESSORS settings, it's not by default (Django 1.4).

You must also not forget the other context processors used by your applications. So, to add the request to the other default processors, you could add this in your settings, to avoid hard-coding the default processor list (that may very well change in later versions):

from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS as TCP

TEMPLATE_CONTEXT_PROCESSORS = TCP + (
    'django.core.context_processors.request',
)

Then, provided you send the request contents in your response, for example as this:

from django.shortcuts import render_to_response
from django.template import RequestContext

def index(request):
    return render_to_response(
        'user/profile.html',
        { 'title': 'User profile' },
        context_instance=RequestContext(request)
    )

you can fetch the URL in your template, for example as this:

<p>URL of this page: {{ request.get_full_path }}</p>

(or {{ request.path }} if you don't need the extra parameters).

share|improve this answer
3  
I used an extended generic class view, and it was unnecessary to add request to the context. – Bobort Jun 4 '12 at 16:32
3  
Sometimes a longer answer is better than the ultra short – STALTZ Oct 17 '12 at 13:23
## settings.py
TEMPLATE_CONTEXT_PROCESSORS = (
    'django.core.context_processors.request',
)

## views.py
from django.template import *

def home(request):
    return render_to_response('home.html', {}, context_instance=RequestContext(request))

## template
{{ request.path }}
share|improve this answer
A bit laconic, and not correct. It's render_to_response, and not render_to_request. And you can't define TEMPLATE_CONTEXT_PROCESSORS as you do in settings.py, without mentioning the other default processors that may well be used in the templates! – RedGlyph Apr 15 '12 at 14:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.