31 lines
705 B
HTML
31 lines
705 B
HTML
{% extends 'tea/base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>{{ tea.company.name }} - {{ tea.name }} ({{ tea.tea_type }})</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.tea_quantity_type }}
|
|
</dd>
|
|
{% endif %}
|
|
|
|
<dt class="col-sm-3">Temps</dt>
|
|
<dd class="col-sm-9">
|
|
{{ tea.tea_time_from }}-{{ tea.tea_time_to }} {{ tea.tea_time_type }}
|
|
</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 %}
|