I thought I was faithfully coping the tutorial, so don't understand
why I get this error.

Here is the code in the view:

@login_required
def edit_todo(request, todo_id):

    task = Task.objects.get(id=todo_id)

    if request.method == 'POST':
         form = TaskForm(request.POST)
         ...

    else:
         form1 = TaskForm()  # this is ok
         form2 = TaskForm(instance=task) #this fails with error

 __init__() got an unexpected keyword argument 'instance'

Form is simple:

class TaskForm(forms.Form):
    owner = forms.ModelChoiceField(Who.objects.filter(owner=1),
empty_label=None, required=True)
    name = forms.CharField(max_length=140, required=True)
    taglist = forms.CharField(max_length=100, required=False)
    description = forms.CharField(widget=forms.Textarea,
required=False)

    class Media:
        js = ('/js/jquery.js', '/js/jquery-ui.min.js','js/
jeditable.js',)
        css = { 'all': ('/css/jquery-ui.css','/css/smoothness/jquery-
ui-1.7.2.custom.css') }

    class Meta :
        model = Task

??? Is it something obvious again?

--~--~---------~--~----~------------~-------~--~----~
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