{% load i18n %} {% block header %}

{% blocktrans with category.title as kbcat %}{{ kbcat }}{% endblocktrans %}

{{ category.description|linebreaks }} {% endblock %} {% block item_list %}
{% for item in items %}
{% block card_body %}

{{ item.question }}

{{ item.get_markdown }}
{% if item.votes != 0 %} {% blocktrans with recommendations=item.recommendations votes=item.votes %}{{ recommendations }} people found this answer useful of {{votes}}{% endblocktrans %} {% endif %}
{% endblock %}
{% endfor %}
{% endblock %} {% block footer %} {% endblock %} {% if category.queue %} {% block submit_button %} {% if iframe %}
{% trans 'Contact a human' %}
{% else %}
{% trans 'Create New Ticket' %}{% if category.queue %}{% trans " Queue: " %}{{category.queue}}{% endif %}
{% endif %} {% endblock %}
{% endif %}