diff --git a/wine/templates/wine/index.html b/wine/templates/wine/index.html
index 50b329c..78ce87b 100644
--- a/wine/templates/wine/index.html
+++ b/wine/templates/wine/index.html
@@ -5,7 +5,13 @@
{{ winery.name }}
{% for wine in winery.wine_set.all %}
- - {{ wine.name }}
+ - {{ wine.name }}
+
+ {% for variety in wine.variety.all %}
+ {{ variety.name }}{% if not forloop.last %}, {% endif %}
+ {% endfor %}
+
+
{% endfor %}
{% endfor %}