{% for question in questions %}
{% for tag in question['tags'] %} {% endfor %}
{% if question['accepted_answer_id'] %} {% for answer in question['answers'] %} {% if answer['is_accepted'] %}
Show Accepted Answer
{% endif %} {% endfor %} {% else %}
No Accepted Answer
{% endif %}
{% endfor %}