{% extends 'django_knowledge/inner.html' %} {% load i18n %} {% block title %}{% trans "Support" %}{% endblock title %} {% block knowledge_widgets %}

{% blocktrans with count=questions|length %}Top {{ count }} Questions{% endblocktrans %}


    {% for question in questions %}
  1. {{ question.title }}  by {{ question.get_name }}
  2. {% endfor %}
{% endblock knowledge_widgets %}