Commit 533d1ab3 authored by Tim Graham's avatar Tim Graham
Browse files

Fixed #20958 -- Documented that GenericForeignKey fields can't be accessed in forms.

Thanks marky1991.
parent 1ccdc081
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -358,6 +358,9 @@ normal field object, these examples will *not* work::
    # This will also fail
    >>> TaggedItem.objects.get(content_object=guido)

Likewise, :class:`~django.contrib.contenttypes.generic.GenericForeignKey`\s
does not appear in :class:`~django.forms.ModelForm`\s.

Reverse generic relations
-------------------------