If you just want to see (read) the contents you could do this:

class Example(models.Model):
value = PickledObjectField()

def value_unpacked(self):
return u'{value}'.format(value=self.value)
filter_link.allow_tags = True

class ExampleAdmin(admin.ModelAdmin):
    list_display = ('id', 'value_unpacked',)
 
Actually modifying it is obviously more difficult as it can be ... anything 
indeed

Paul

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to