コード例 #1
0
def internal_server_error(request):
    return HttpResponseNotFound(loader.get_template('f/msg_box.html').render(system_request_context(request, {
        'msg': _('The system runs into a problem. It will be fixed as soon as possible.'),
        })))
コード例 #2
0
def page_not_found(request):
    return HttpResponseNotFound(loader.get_template('f/msg_box.html').render(system_request_context(request, {
        'msg': _('The requested page is not found. Please check the address.'),
        })))