I have in my Django controller a function that is called as follows:
trip.driverTrip.filter(status='pending')
What it will be the equivalent of calling this in a template. If I just want to call the filter function, the following will suffice:
{{trip.driverTrip.filter}}
But is there a way to pass it arguments ?