Show category descriptions if redeeming a voucher

This commit is contained in:
Raphael Michel
2017-07-18 16:46:36 +02:00
parent 7e304bb231
commit 8a3fa6aff6

View File

@@ -25,7 +25,12 @@
<input type="hidden" name="_voucher_code" value="{{ voucher.code }}"> <input type="hidden" name="_voucher_code" value="{{ voucher.code }}">
{% for tup in items_by_category %} {% for tup in items_by_category %}
<section> <section>
{% if tup.0 %}<h3>{{ tup.0.name }}</h3>{% endif %} {% if tup.0 %}
<h3>{{ tup.0.name }}</h3>
{% if tup.0.description %}
<p>{{ tup.0.description|localize|rich_text }}</p>
{% endif %}
{% endif %}
{% for item in tup.1 %} {% for item in tup.1 %}
{% if item.has_variations %} {% if item.has_variations %}
<div class="item-with-variations"> <div class="item-with-variations">