We have a model Drink with fields brand, taste:
class Drink(models.Model):
brand = models.CharField(max_length=32)
taste = models.CharField(max_length=32)
We pass a QuerySet with drinks to a template in context dictionary: {'drinks': ...}.
Render the number of drinks passed in the QuerySet.