You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently a linklist.py file has a dictionary key object_filter - which tells it which model instances it can ignore.
It currently has a couple of limitations:
It means both "ignore as a source of links" and "ignore as a destination of links". There might be cases where you want one and not the other
It accepts a dict as a parameter and basically does MyClass.objects.filter(**object_filter). I've got several Model classes where visibility can't be expressed as a simple dict. I would like to modify this class to also accept Q and maybe F objects.
The text was updated successfully, but these errors were encountered:
Currently a linklist.py file has a dictionary key object_filter - which tells it which model instances it can ignore.
It currently has a couple of limitations:
The text was updated successfully, but these errors were encountered: