Django 1.11 fix for AttributeError: 'GenericForeignKeyRawIdWidget' object has no attribute 'rel'

This commit is contained in:
Michael Brannan 2020-02-28 16:07:20 +00:00
parent 3677b421fe
commit 9848b54c37

View file

@ -80,5 +80,8 @@ class GenericForeignKeyRawIdWidget(ForeignKeyRawIdWidget):
)
return mark_safe(u"".join(output) + content_types)
def get_context(self, name, value, attrs):
return forms.TextInput.get_context(self, name, value, attrs)
def url_parameters(self):
return {}