> In that form, I'd
> like to see a checkbox for each Person (member) and a text field for
> 'date_joined'. Anyway to do this?

You can create forms from models. See this page for more information: 
http://docs.djangoproject.com/en/dev/topics/forms/modelforms/

You can always override the default widgets.

In your case it would become something like:

class Membership(ModelForm):
        class Meta:
                model = Membership
                fields = ('person', 'date_joined') 
                widgets = {
                        'person' : CheckBox(),
                        'date_joined': TextInput(),
                }



-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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