mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-26 01:43:10 +01:00
23084499c1
* Add VERY basic knowledgebase functions * Restructure views.py into views/*.py
21 lines
905 B
HTML
21 lines
905 B
HTML
{% extends "helpdesk/public_base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_body %}
|
|
<h2>{% blocktrans with category.title as kbcat %}Knowledgebase Category: {{ kbcat }}{% endblocktrans %}</h2>
|
|
|
|
<p>{% blocktrans with category.title as kbcat %}You are viewing all items in the {{ kbcat }} category.{% endblocktrans %}</p>
|
|
|
|
<p>{{ category.description }}</p>
|
|
|
|
<table width='100%'>
|
|
<tr class='row_tablehead'><td colspan='3'>{% blocktrans with category.title as kbcat %}Knowledgebase Category: {{ kbcat }}{% endblocktrans %}</td></tr>
|
|
<tr class='row_columnheads'><th colspan='3'>{% trans "Article" %}</th></tr>
|
|
|
|
{% for item in items %}
|
|
<tr class='row_even row_hover'><th><a href='{{ item.get_absolute_url }}'>{{ item.title }}</a></th><td>{{ item.score }}</td><td>{{ item.last_updated|timesince }}</td></tr>
|
|
<tr class='row_odd'><td colspan='3'>{{ item.question }}</td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %}
|