If I have the following Model:
class Person(models.Model):
first_name = models.CharField(max_length=30)
last_name = models.CharField(max_length=30)
how do I list all objects that have a non unique last_name field? For example, if there are 20 objects that all have the last_name 'Smith', they would be listed. However, if only one object had the last_name 'Euler' it would not be included in the list.