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 all drinks as an unordered list. Try to use template filter for this purpose.