I want to override default Error Page to hide META Block in any way.
Meta Block contains all sensitive Info. which i don't want to be in Views for any user.
I want to override default Error Page to hide META Block in any way.
Meta Block contains all sensitive Info. which i don't want to be in Views for any user.
Looks like debug is True. Please see debug option
How to override default error pages: Django, creating a custom 500/404 error page
Refer this Django Error Report which will give you error report log when DEBUG is False
When you’re running a public site you should always turn off the DEBUG setting.
However, running with DEBUG set to False means you’ll never see errors generated by your site – everyone will just see your public error pages. You need to keep track of errors that occur in deployed sites, so Django can be configured to create reports with details about those errors.
Possible answer for your question is here