I'm using Django-piston and I'd like to get user objects that include user profile data.
I'm trying :
class UserHandler(BaseHandler):
model = User
fields = ('id', 'username', 'favorite_color')
...
favorite_color is defined in UserProfile
The result is only printing id and username and nothing for favorite color.