-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Description
I'm using __filter__include=True on a foreign key fields in an edit table. The filter is displayed and shows the values, but when I select one and click on Filter I'm getting a InvalidEndpointPathException where it tries to reach a (...)/query/query path for that field.
my relevant code:
project_logs = EditTable(
title="Project logs",
auto__model=ProjectLog,
page_size=10,
rows=lambda pk, **_: ProjectLog.objects.filter(
project__customer=Customer.objects.get(pk=pk)
),
columns__timestamp__field__initial=now(),
columns__notice__field__include=True,
columns__project__filter__include=True,
)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels