On Wed, 2008-11-26 at 19:43 -0800, izzy wrote: > Hi all. > > I'm new to Django and I would like to get the unique values of a field > in a model. > > For example: > > Class Report(models.Model): > title = models.Charfield.... > category = models... > author = models.ForeignKey(auth.User) > ... > > in views.py, how can I retrieve the unique values of the author?
At some point you have to cave in and read the documentation. Just scanning the contents bar on the right side of the queryset API documentation (http://docs.djangoproject.com/en/dev/ref/models/querysets/ ) would suggest the answer (hint: look at the "distinct()" call). Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---