{% extends "helpdesk/public_base.html" %}{% load i18n humanize %} {% block helpdesk_body %}

{% trans 'Knowledgebase Category' %}:{% blocktrans with category.title as kbcat %}{{ kbcat }}{% endblocktrans %}

{% blocktrans with category.title as kbcat %}You are viewing all items in the {{ kbcat }} category.{% endblocktrans %}

{{ category.description }}

{% for item in items %} {% cycle 'one' 'two' 'three' as itemnumperrow silent %} {% ifequal itemnumperrow 'one' %}
{% endifequal %}

{{ item.title }}

{{ item.question }}

{% ifequal itemnumperrow 'three' %}
{% endifequal %} {% endfor %} {% endblock %}