diff --git a/tea/templates/tea/detail.html b/tea/templates/tea/detail.html index 4fe0282..3f35954 100644 --- a/tea/templates/tea/detail.html +++ b/tea/templates/tea/detail.html @@ -1,7 +1,7 @@ {% extends 'homepage/base.html' %} {% block content %} -

{{ tea.company.name }} - {{ tea.name }} ({{ tea.tea_type }})

+

{{ tea.company.name }} - {{ tea.name }} ({{ tea.get_tea_type_display }})

{{ tea.ingredients }} diff --git a/tea/templates/tea/index.html b/tea/templates/tea/index.html index a657f40..0f31fe2 100644 --- a/tea/templates/tea/index.html +++ b/tea/templates/tea/index.html @@ -7,6 +7,7 @@ {% for tea in company.tea_set.all %}

  • {{ tea.name }} + {{ tea.get_tea_type_display }}
  • {% endfor %}