I'm a bit new to all this.

I was trying to implement the UserProfile feature described here:
http://www.thenestedfloat.com/articles/displaying-custom-user-profile-fields-in-djangos-admin

But when it comes time to add that to the admin side of things (in
appengine), I get the error:
'PropertiedClass' object is not iterable

This is the latest version of the offending file:
from django.contrib import admin
from django.contrib.auth.models import User
from django.contrib.auth.admin import UserAdmin
from userprofile.models import UserProfile

admin.site.unregister(User)

#class UserProfileInline(admin.StackedInline):
#  model = UserProfile

#class UserProfileAdmin(UserAdmin):
#  inlines = [UserProfileInline]

#admin.site.register(User, UserAdmin)
__END__

... any ideas?

Many Thanks,

James

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