mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-01-05 21:49:24 +01:00
19 lines
754 B
HTML
19 lines
754 B
HTML
{% extends "helpdesk/public_base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_body %}
|
|
<h2>{% trans "Knowledgebase" %}</h2>
|
|
|
|
<p>{% trans "We have listed a number of knowledgebase articles for your perusal in the following categories. Please check to see if any of these articles address your problem prior to opening a support ticket." %}</p>
|
|
|
|
<table width='100%'>
|
|
<tr class='row_tablehead'><td>{% trans "Knowledgebase Categories" %}</td></tr>
|
|
<tr class='row_columnheads'><th>{% trans "Category" %}</th></tr>
|
|
|
|
{% for category in kb_categories %}
|
|
<tr class='row_even row_hover'><th><a href='{{ category.get_absolute_url }}'>{{ category.title }}</a></th></tr>
|
|
<tr class='row_odd'><td>{{ category.description }}</td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %}
|