If you only want to print one value from the items you can do something like:
Model.objects.values_list('field', flat=True).distinct()
that will return a list of all the values in that field, but distint of course.
Alex
--
"I disapprove of what you say, but I will defend to the death your right to say it." --Voltaire
"The people's good is the highest law."--Cicero