I am using django-forms-builder and I am updating it to work with later versions of Django.
I get the above deprecation warning. This is the code:
forms.py line 367:
# Get the field entries for the given form and filter by entry_time
# if specified.
model = self.fieldentry_model
field_entries = model.objects.filter(entry__form=self.form
).order_by("-entry__id").select_related(depth=1)
I do not think that the related name is known ahead of time in this. Can anyone suggest how to fix this?
--