{% extends "helpdesk/public_base.html" %}{% load i18n humanize %} {% block helpdesk_breadcrumb %} {% endblock %} {% 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 }}

{% blocktrans with item.get_absolute_url as url %}View Answer {% endblocktrans %}

{% trans 'Rating' %}: {{ item.score }}

{% trans 'Last Update' %}: {{ item.last_updated|naturaltime }}

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