{% 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 request.user.pk %}
{% endif %} {% if staff %}
{{item.num_open_tickets}} {% trans 'open tickets' %}
{% endif %}
{% trans 'Contact a human' %}
{% 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 %}
{% trans 'Contact a human' %}
{% endblock %}
{% endif %}