{% extends "kb/base.html" %} {% load i18n %} {% block appbar %}

{% trans 'Knowledge Base' %} - {{ object.title }}

{% if can_manage %} {% trans 'Delete' %} {% trans 'Edit' %} {% endif %} {% endblock %} {% block breadcrumb %} {{ block.super }} {% if object %} {{object.title}} {% endif %} {% endblock %} {% block content %}
{{ object.content|safe }}

{% trans 'Keywords:' %} {% for tag in object.tags.all %}{{tag}}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endblock %}