{% extends 'django_knowledge/inner.html' %} {% load knowledge_tags %} {% block title %}Showing {{ questions.paginator.count }} results{% if search %} for {{ search }}{% endif %}{% if category %} in {{ category.title }} category{% endif %}{% endblock title %} {% block knowledge_widgets %}

Showing {{ questions.paginator.count }} results{% if search %} for {{ search }}{% endif %}{% if category %} in {{ category.title }} category{% endif %}:


    {% for question in questions.object_list %}
  1. {{ question.title }}  by {{ question.get_name }}
  2. {% endfor %}
{% if not questions.paginator.count %}

No results found.

{% endif %}
{% if questions.has_previous %} ← previous {% endif %}   page {{ questions.number }} of {{ questions.paginator.num_pages }}   {% if questions.has_next %} next → {% endif %}
{% if form and paginator.count < 5 %}

Ask a Question


{% url knowledge_ask as form_url %} {% include "django_knowledge/form.html" with submit_value="Submit this support request" submit_and="and we'll get back to you as soon as possible." submit_url=form_url %}
{% endif %} {% endblock knowledge_widgets %}