mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-30 03:43:46 +01:00
23084499c1
* Add VERY basic knowledgebase functions * Restructure views.py into views/*.py
19 lines
751 B
HTML
19 lines
751 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 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 %}
|