so i have this django model
class terrain(models.Model):
location=models.CharField(max_length=200)
size=models.CharField(max_length=200)
def __str__(self):
return str(self.location)
how do i get the location of diffrent terrains having the same size ,i used the filter but i have to specify the size for example
data=terrain.objects.filter(size="big")
can't i do this without specifying the size just by pasing the size field