my project is including upload of images, I have a problem in editing client's info, when i click the edit button, it cannot get the image from the database and when i pud/change/upload another image the error will come 'ClientEditForm' object has no attribute 'cleaned_data' ...

def client_edit_page(request):
    if 'id' in request.GET: 
        idz = request.GET['id']
        try: 
            inst = Client.objects.get(id=idz) 
        except (Client.DoesNotExist):
            pass
        form = ClientEditForm({
            'id': inst.id,
            'name': inst.name,
            'b_type': inst.b_type,
            'banner': inst.banner,
            'logo': inst.banner,
            'address': inst.address,
            'contact': inst.contact
        })
    elif request.method == 'POST':
        form = ClientEditForm(request.POST, request.FILES)
        if form.is_valid:
            client = Client.objects.get(id = form.data['id'])
            client.name = form.data['name']
            client.b_type = form.data['b_type']
            client.banner = form.cleaned_data['banner']
            client.logo = form.cleaned_data['logo']
            client.address = form.data['address']
            client.contact = form.data['contact']
            client.save()
            return HttpResponseRedirect('/client/' + form.data['id'] + '/')
    else:
        form = ClientEditForm()
    client = Client.objects.get(id=idz)
    template = get_template('client_edit_page.html')
    variables = RequestContext(request, {'client': client,'form': form})
    return render_to_response('client_edit_page.html', variables)

i used the cleaned_data in my client_save_page() and it works, i was wondering why in my client_edit_page() didn't work.

my question is, how can i get the image from database? and how can i put a cleaned_data in my client_save_page()?

does anyone can give me advice or idea about my situation? thanks in advance...

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

You have a typo in your code. The correct line would be:

if form.is_valid():

That should fix the "cleaned_data" issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.