We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13267d3 commit 1d3df71Copy full SHA for 1d3df71
bolt/views/errors.py
@@ -15,7 +15,11 @@ def __init__(self, status_code=None) -> None:
15
def get_template_names(self) -> list[str]:
16
return [f"{self.status_code}.html", "error.html"]
17
18
+ def get_request_handler(self):
19
+ return self.get # All methods (post, patch, etc.) will use the get()
20
+
21
def get_response(self) -> HttpResponseBase:
- response = super().get() # All methods (post, patch, etc.) will use the get()
22
+ response = super().get_response()
23
+ # Set the status code we want
24
response.status_code = self.status_code
25
return response
0 commit comments