Opened 8 years ago
Last modified 8 years ago
#26978 closed Cleanup/optimization
Improve the message attached to the 404 raised by get_object_or_404 and get_list_or_404 — at Version 1
Reported by: | Joachim Jablon | Owned by: | |
---|---|---|---|
Component: | Core (Other) | Version: | 1.9 |
Severity: | Normal | Keywords: | 404, object_name |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
The problem :
If no object is returned by get_object_or_404 and get_list_or_404, they raise an Http404 error for which the error message contains the model._meta.object_name
. This name should not really be shown to the user within the normal workflow. Classes have a verbose_name
that is more appropriate.
Moreover, this message should be translatable.
(not sure if it's really a bug report or a feature request...)
Code :
Note:
See TracTickets
for help on using tickets.