I've tried:

people.get_list(lat__gte=minlat, lon__gte=minlon, lat__lte=maxlat,
lon__lte=maxlon, tags__value__exact='django')

TypeError: got unexpected keyword argument 'tags__value__exact'

And:

people.get_list(lat__gte=minlat, lon__gte=minlon, lat__lte=maxlat,
lon__lte=maxlon, tag__value__exact='django')

TypeError: got unexpected keyword argument 'tag__value__exact'

---

class Tag(meta.Model):
  person = meta.ManyToManyField(Person, blank=True, null=True)
  tag = meta.CharField(maxlength=50, db_index=True)
  count = meta.IntegerField(blank=True, null=True)

  def _pre_save(self):
    self.tag = self.tag.lower()

  def __repr__(self):
    return self.tag

  class META:
    module_name = "tags"
    verbose_name_plural = "Tags"
    verbose_name = "Tag"
    admin = meta.Admin()

---

Any ideas?  Thanks much for the reply, though.
Brett


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to