Changeset 2c0eaa1 for asadb/forms
- Timestamp:
- May 28, 2011, 5:05:05 AM (15 years ago)
- Branches:
- master, space-access, stable, stage, test-hooks
- Children:
- 9480c7b
- Parents:
- a76118f
- git-author:
- Alex Dehnert <adehnert@…> (05/28/11 05:05:05)
- git-committer:
- Alex Dehnert <adehnert@…> (05/28/11 05:05:05)
- File:
-
- 1 edited
-
asadb/forms/views.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
asadb/forms/views.py
rc49fbe2 r2c0eaa1 120 120 121 121 def select_group_fysm(request, ): 122 qobj = Q(activity_category__ name='Dorm') | Q(activity_category__name='FSILG')123 queryset = groups.models.Group.objects.filter( ~qobj)122 qobj = Q(activity_category__isnull = True) | ~(Q(activity_category__name='Dorm') | Q(activity_category__name='FSILG')) 123 queryset = groups.models.Group.objects.filter(qobj) 124 124 return select_group( 125 125 request,
Note: See TracChangeset
for help on using the changeset viewer.