2017-03-05 119 views
0

我編寫了自定義django錯誤模板,不需要任何其他自定義行爲而不是模板的自定義路徑(模板不在根目錄中)。我試過如下:自定義django錯誤模板

handler400 = partial(bad_request, template_name='polls/errors/400.html') 
handler403 = partial(permission_denied, template_name='polls/errors/403.html') 
handler404 = partial(page_not_found, template_name='polls/errors/404.html') 
handler500 = partial(server_error, template_name='polls/errors/500.html') 

但似乎我需要pass the views as a string。我是否必須編寫完全相同的自定義視圖,或者如何更改模板名稱?

回答

0

解決方法是將代碼放入根URL配置中。