Hi All,
I picked up this sample code from django documentation:
from django.core import serializers
data = serializers.serialize('xml', SomeModel.objects.all(),
fields=('name','size'))
How do I extend this to do the following:
data = serializers.serialize('xml', SomeModel.objects.all(),
fields=('name','size', '__unicode__'))
Thanks in advance
Regards Ganesh
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---