{% extends 'base.html' %} {% load static i18n %} {% block title %}{% trans "Questions" %}{% endblock %} {% block head %} {% endblock head %} {% block content %}
{% trans 'Questions by topic' %}
{% for tag, count in popular_tags %} {{ count }} {{ tag }} {% endfor %}
{% for question in questions %} {% include 'qa/question_sample.html' with question=question %} {% empty %}

{% trans "No question to display" %}

{% endfor %} {% if is_paginated %} {% endif %}
{% endblock content %} {% block modal %} {% endblock modal %}