Skip to content

Commit

Permalink
Change Type field default on groups search form, from WG to unset. Co…
Browse files Browse the repository at this point in the history
…mmit ready for merge

 - Legacy-Id: 7843
  • Loading branch information
rpcross committed Jun 3, 2014
1 parent eb2a639 commit 61b1755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/secr/groups/views.py
Expand Up @@ -413,7 +413,7 @@ def search(request):
results = Group.objects.filter(parent__id=area,type='wg',state__in=('bof','active','proposed')).order_by('name')
form = SearchForm({'primary_area':area,'state':'','type':'wg'})
else:
form = SearchForm(initial={'state':'active','type':'wg'})
form = SearchForm(initial={'state':'active'})

# loop through results and tack on meeting_scheduled because it is no longer an
# attribute of the meeting model
Expand Down

0 comments on commit 61b1755

Please sign in to comment.