[Answered ]-App Engine model filtering with Django

2👍

You need to insert a space between the field name and the operator in your filter arguments – eg, use .filter('intake =') instead of .filter('intake='). With an equality filter, you can also leave it out entirely, as in .filter('intake'). Without the space, the equals sign is taken to be part of the field name.

Leave a comment