diff -r 6ba61cce4b52 -r a3c33bef2ea8 app/soc/views/models/organization.py --- a/app/soc/views/models/organization.py Thu Mar 05 07:49:30 2009 +0000 +++ b/app/soc/views/models/organization.py Thu Mar 05 17:44:48 2009 +0000 @@ -200,8 +200,10 @@ ranked_params['name_plural'], org_entity.name) ranked_params['list_action'] = (redirects.getReviewRedirect, ranked_params) - filter = {'org' : org_entity, - 'status': ['pending', 'accepted']} + # TODO(ljvderijk) once sorting with IN operator is fixed, + # make this list show more + filter = {'org': org_entity, + 'status': 'pending'} # order by descending score order = ['-score']