It is in the docs, although it's probably not immediately clear for
people not coming from a python background.
http://docs.djangoproject.com/en/dev/topics/db/queries/#retrieving-specific-objects-with-filters
**kwargs means keyword arguments (note that it's plural). "field1=val"
is one keyword argument. So you can specify more than one and all of
the conditions will be AND-ed together, like so:
Model.objects.filter(field1=val, field2=val)
You can even chain filters together to achieve the same effect:
http://docs.djangoproject.com/en/dev/topics/db/queries/#id1
If you want to OR them together, have a look at Q objects:
http://docs.djangoproject.com/en/dev/topics/db/queries/#complex-lookups-with-q-objects
Ronny