You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.1 KiB
HTML

{% extends "base_help.html" %}{% load i18n %}
{% block helpdesk_body %}
<h2>{% trans "Knowledge Base" %}</h2>
<div class="block padded-block">
<p>{% trans "Please check to see if any of these answers address your problem prior to opening a support ticket." %}</p>
{% for category in categories %}
{% with category.get_entry_count as entry_count %}
{% if entry_count >= 1 %}
<h3>{{ category.name }}</h3>
<ul class="kb-cat-top-questions">
{% for item in category.get_top_entries %}
<li><a href="{{ item.get_absolute_url }}">{{ item.question }}</a></li>
{% endfor %}
{% if entry_count > config.KB_MAX_TOP_ENTRIES %}
<li class="more">
<a href='{{ category.get_absolute_url }}'><b>{% trans 'View all questions' %}</b></a>
</li>
{% endif %}
</ul>
{% endif %}
{% endwith %}
{% endfor %}
</div>
{% endblock %}