Posted by: skyl on Oct. 26, 2010
django forms
class ArticleForm(forms.ModelForm): class Meta: model = Article fields = ('category')
You need a comma there after 'category' to make a tuple :-).