On Oct 14, 8:20 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Thanks Malcolm. I've read the docs on the new file storage and feel
> fairly comfortable with it, generally speaking--at least all my other
> code is ported over to use it with no problems. But I'm not seeing how
> it works with update_object, which appears to be just ignoring the new
> file altogether.


If it helps, this is the view that appears to be failing:

def edit_profile(request, slug):
    from django.views.generic.create_update import update_object
    gpuser = GpUser.objects.get(user__username=slug)
    return update_object(
        request,
        model=GpUser,
        object_id=gpuser.id,
        login_required=True,
        template_name="users/user_edit_form.html",
    )
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to