36 lines
874 B
HTML
36 lines
874 B
HTML
{% extends 'homepage/base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>{{ tea.company.name }} - {{ tea.name }} ({{ tea.get_tea_type_display }})</h2>
|
|
|
|
<p class="lead">
|
|
{{ tea.ingredients }}
|
|
</p>
|
|
|
|
<dl class="row">
|
|
{% if tea.tea_quantity %}
|
|
<dt class="col-sm-3">Quantité</dt>
|
|
<dd class="col-sm-9">
|
|
{{ tea.tea_quantity }} {{ tea.get_tea_quantity_type_display }}
|
|
</dd>
|
|
{% endif %}
|
|
|
|
<dt class="col-sm-3">Temps</dt>
|
|
<dd class="col-sm-9">
|
|
{{ tea.tea_time_from }}-{{ tea.tea_time_to }} {{ tea.get_tea_time_type_display }}
|
|
</dd>
|
|
|
|
<dt class="col-sm-3">Conditionnement</dt>
|
|
<dd class="col-sm-9">
|
|
{{ tea.get_conditioning_display }}
|
|
</dd>
|
|
|
|
{% if tea.url %}
|
|
<dt class="col-sm-3">Page web</dt>
|
|
<dd class="col-sm-9">
|
|
<a href="{{ tea.url }}">{{ tea.url }}</a>
|
|
</dd>
|
|
{% endif %}
|
|
</dl>
|
|
|
|
{% endblock %}
|