{% load cms_tags i18n %}
{% for question in object_list %} {% if view.config.app_data.config.show_description %}

{% render_model question "title" %} {% for tag in question.tags.all %} {{ tag }} {% endfor %}

{% render_model question "answer_text" %}
{% else %} {% render_model question "title" %} {% for tag in question.tags.all %} {{ tag }} {% endfor %} {% endif %} {% empty %}

{% trans "No entry found." %}

{% endfor %}