Commit | Line | Data |
---|---|---|
1e28a70a | 1 | # -*- encoding: utf-8 -*- |
2 | ||
3 | from django.shortcuts import render_to_response | |
4 | from django.template import RequestContext | |
5 | ||
6 | def page_404(request): | |
7 | return render_to_response("404.html", context_instance = RequestContext(request)) | |
8 | ||
9 | def page_500(request): | |
10 | return render_to_response("500.html", context_instance = RequestContext(request)) |