Themes built on the Twig templating engine are now deprecated and require migration to Vitrin to ensure continued support and compatibility with Zid.
/products/{slug}/questionsproduct_questions| Variable | Type |
|---|---|
product | Product |
questions | QuestionList |
store | Store |
session | Session |
| Property | Description |
|---|---|
question.question | Question text |
question.name | Asker name |
question.is_anonymous | Anonymous flag |
question.answers | List of answers |
{% extends "layout.jinja" %}
{% block main_content %}
<h1>{{ product.name }} - {{ _("Questions") }}</h1>
{% for question in product.questions.results %}
<div class="question">
{% if not question.is_anonymous %}
<strong>{{ question.name }}</strong>
{% endif %}
<p>{{ question.question }}</p>
{% if question.answers %}
<div class="answer">
{{ question.answers[0].answer }}
</div>
{% endif %}
</div>
{% endfor %}
{% endblock %}