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.
21 lines
555 B
HTML
21 lines
555 B
HTML
{% extends "base_help.html" %}{% load i18n %}{% load i18n humanize %}
|
|
|
|
{% block pagetitle %}{% trans 'Knowledge Base' %}: {{ category.name }}{% endblock %}
|
|
{% block helpdesk_body %}
|
|
<h2></h2>
|
|
|
|
<div class="block padded-block">
|
|
<h3>{{ category.name }}</h3>
|
|
{% if category.description %}
|
|
<p>{{ category.description }}</p>
|
|
{% endif %}
|
|
|
|
<ul class="kb-question-list">
|
|
{% for item in items %}
|
|
<li><a href="{{ item.get_absolute_url }}">{{ item.question }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|
|
|