Re: djangoamf doesn't work with models with ImageField

2008-09-22 Thread euglena
I'm now using django 1.0 and djangoamf 0.6. Maybe this djangoamf version is conflicted to the new django version? Has anyone tried the two together? This error occurs whenever I try to return a queryset with a "ImangeField". This is the whole traceback: Traceback (most recent call last): File

Re: djangoamf doesn't work with models with ImageField

2008-09-19 Thread Karen Tracey
On Fri, Sep 19, 2008 at 6:39 AM, euglena <[EMAIL PROTECTED]> wrote: > > anyone there? > > On Sep 13, 11:49 am, euglena <[EMAIL PROTECTED]> wrote: > > Hi everybody, > > I have a model like this: > > class Product(models.Model): > > ... > > icon = models.ImageField(upload_to='icons/', blank=

Re: djangoamf doesn't work with models with ImageField

2008-09-19 Thread euglena
anyone there? On Sep 13, 11:49 am, euglena <[EMAIL PROTECTED]> wrote: > Hi everybody, > I have a model like this: > class Product(models.Model): >     ... >     icon = models.ImageField(upload_to='icons/', blank=True) >     ... > > And I want my dangoamf to get a list of this model's objects. I a

djangoamf doesn't work with models with ImageField

2008-09-12 Thread euglena
Hi everybody, I have a model like this: class Product(models.Model): ... icon = models.ImageField(upload_to='icons/', blank=True) ... And I want my dangoamf to get a list of this model's objects. I always get an AttributeError: 'list' object has no attribute 'creation +counter' if I d