mirror of
https://github.com/django/django.git
synced 2024-12-23 09:36:06 +00:00
Fixed #20761 -- Reworded ForeignKey default error message
This commit is contained in:
parent
ad98b985aa
commit
311c1d2848
@ -1125,7 +1125,7 @@ class ForeignObject(RelatedField):
|
|||||||
class ForeignKey(ForeignObject):
|
class ForeignKey(ForeignObject):
|
||||||
empty_strings_allowed = False
|
empty_strings_allowed = False
|
||||||
default_error_messages = {
|
default_error_messages = {
|
||||||
'invalid': _('Model %(model)s with pk %(pk)r does not exist.')
|
'invalid': _('%(model)s instance with pk %(pk)r does not exist.')
|
||||||
}
|
}
|
||||||
description = _("Foreign Key (type determined by related field)")
|
description = _("Foreign Key (type determined by related field)")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user