This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
django-stock/tea/templates/tea/index.html

14 lines
396 B
HTML

{% extends 'tea/base.html' %}
{% block content %}
{% for company in company_list %}
<h2>{{ company.name }}</h2>
<ul>
{% for tea in company.tea_set.all %}
<li {% if not tea.available %} style="text-decoration: Line-Through"{% endif %}>
<a href="{% url 'tea:detail' tea.id %}">{{ tea.name }}</a>
</li>
{% endfor %}
</ul>
{% endfor %}
{% endblock %}