Skip to content

Instantly share code, notes, and snippets.

@nietaki
Created May 31, 2011 22:12
Show Gist options
  • Save nietaki/1001389 to your computer and use it in GitHub Desktop.
Save nietaki/1001389 to your computer and use it in GitHub Desktop.
class MyContestForm(ModelForm):
def __init__(self, request, *args, **kwargs):
super(MyContestForm, self).__init__(*args, **kwargs)
user = request.user
boards_available = Board.objects.filter(author=user, contest_only=True)
self.fields['boards'].queryset
class Meta:
model = Contest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment