How do I pass template context information when using HttpResponseRedirect in Django?

33,771

Solution 1

The best way would probably be to use a coded querystring on the redirect URL... its an old school approach.

You could do something like

/page/?m=1, /page/?m=2, etc

You would then parse that variable with request.GET in the view code and show the appropriate message.

Solution 2

For the sake of completion and future reference, you can now use the messages framework. After you install it:

views.py

from django.contrib import messages

def view(request):
  # your code
  messages.success(request, "Your data has been saved!")
  HttpResponseRedirect(request.path)

template.html

{% if messages %}
<ul class="messages">
  {% for message in messages %}
  <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
  {% endfor %}
</ul>
{% endif %}

Solution 3

if you are using auth and have a logged in user you could:

http://docs.djangoproject.com/en/dev/topics/auth/#django.contrib.auth.models.User.message_set.create

GET params are also hackable. The querystring, as mentioned in other answers, could be used.

I think the most preferred way would be to use the sessions framework. That way you can load up whatever you want in the context and get

{{ request.session.foo }} 

foo could be the message or you could do:

{% ifequal request.session.foo 1 %} Nice work! {% else %} Almost! {% endifequal %}

and other fun stuff.

http://docs.djangoproject.com/en/dev/topics/http/sessions/#using-sessions-in-views

Solution 4

You can't. HttpResponseRedirect sends a client-side redirect (HTTP status code 302) to the browser, and then the browser re-requests another page.

You can set a URL query string on the redirect, though that will be visible to the user and anyone intercepting HTTP requests (i.e. proxies), and is therefore not suitable for sensitive information.

Solution 5

From your views.py you hast have to put a key/value-pair into the session and then read it from the HTML template.

For example:

views.py

# your code here
request.session['vote'] = 1
return HttpResponseRedirect(request.path)

your_template.html

{% ifequal request.session.vote 1 %}
    <!-- Your action here -->
{% endifequal  %}
Share:
33,771
Jeff
Author by

Jeff

Updated on March 20, 2020

Comments

  • Jeff
    Jeff about 4 years

    I have a form that redirects to the same page after a user enters information (so that they can continue entering information). If the form submission is successful, I'm returning

    HttpResponseRedirect(request.path)
    

    which works fine. However, I'd also like to display some messages to the user in this case (e.g., "Your data has been saved" at the top of the screen). If I weren't redirecting, I'd just return these messages in the context dictionary. With the redirect, however, I can't do this.

    So how can I pass template context information when using HttpResponseRedirect?

    What I'm trying to do seems like it would be incredibly common, so please excuse me if I'm missing something obvious.

  • Jeremy Leipzig
    Jeremy Leipzig over 12 years
    as in request.session['foo'] = 1 ?
  • Skylar Saveland
    Skylar Saveland over 12 years
    yes, for the second template code. or, for the first template snippet, you could put the whole message in there depending on the logic.
  • nicorellius
    nicorellius about 10 years
    I never realized how easy sessions were to use in Django... Thanks for suggesting this. I've made use of this method and it works very well.
  • Hassan Baig
    Hassan Baig over 7 years
    An old answer, but I suspect something like this could be used for the question I asked here: stackoverflow.com/questions/41317128/… Would love to hear your thoughts on it if you've got time :-)