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.'), })))
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.'), })))