Hi guys,
I've got a ModelForm defined like below:
class ArticleForm(forms.ModelForm):
    title = forms.CharField(stuff)
    def custom_validator():
        ......
    class Meta:
        model = Article

I want to subclass it, but do _not_ want the title field, i.e.
class SubArticleForm(ArticleForm):
     class Meta:
          fields = [...anything but 'title'...]
But the title field still shows up.  Is there a way to remove it in
subclasses?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to