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

I have a project that I am working on in django. There are a lot of instances where I:

raise Http404("this is an error")

and it creates a nice 404 page for me with the error message "this is an error" written on it. I now want to create a custom error page and have it still display the message, but I can't figure out how. I'm sure it's just a template variable that I need to add to my custom 404 template, but I can't find any documentation for it.

share|improve this question
have you find the way of getting "this is an error" message into the custom 404 handler? @Alasdair, nbv4 i will really apretiate your help. – marianobianchi Oct 3 '12 at 14:24

2 Answers

up vote 6 down vote accepted

I don't think there's an easy way to display the "this is an error" string in your template. I think that when you raise Http404, the argument is there to aid debugging, rather than display messages on the live website.

If you look at the code for the page_not_found view which is loaded when you raise Http404, you can see that the only variable in the context is

request_path: The path of the requested URL (e.g., '/app/pages/bad_page/')

So in your custom 404.html template file, you can use {{request_path}} to show the requested URL, but the default error handler doesn't provide a way to access the "this is an error" string in the template.

If you really need to add the string to the template context, rather than hardcoding it into your 404 template file, you could write a custom 404 handler.

share|improve this answer

There is another way. The code at page_not_found uses RequestContext; that means that you have access to all the variables defined by all the context processors defined in the TEMPLATE_CONTEXT_PROCESSORS entry in settings.py. The default value includes, among others, the django messages framework.

So, you con define the message you want to show using messages.error, for example, and show the message in the template using the messages variable.

In other words, you can write your view like this:

from django.contrib import messages
from django.http import Http404
from django.template import RequestContext

def my_view(request):
    # your code goes here
    if something_horribly_wrong_happened():
        messages.error(request, 'Somethig horribly wrong happened!')
        raise Http404("It doesn't mind whatever you put here")
    else:
        return render_to_response(
            'template.html',
            RequestContext(request, locals()),
            )

In your 404.html template, you should write something like:

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

It's a bit more complex, but it has the advantage you can send several messages, and even use diferent kind of messages (Warning, Debug, Info, Error, etc...) You can read more about the django message framework here: The messages framework | Django Documentation.

share|improve this answer

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.