Hi,
In an attempt to fix my earlier query about related names etc, it would appear that I've (half() fixed my issue.
I now have:
submission = GenericRelation(
MyModel,
related_query_name='%(app_label)s_related_name')
So that's good and gives me the related names. However, when I come to use django filters, I get hit with the message:
FieldError: Cannot resolve keyword 'my_app_name_related_name into field. Choices are: %(app_label)s_related_name, etc etc etc.
What is causing this and how do I not have this?