welco/welco/kb/templates/kb/page_detail.html

16 lines
450 B
HTML
Raw Normal View History

{% extends "kb/base.html" %}
{% load i18n %}
{% block appbar %}
<h2>{% trans 'Knowledge Base' %} - {{ object.title }}</h2>
<a rel="popup" href="{% url 'kb-page-delete' slug=object.slug %}">{% trans 'Delete' %}</a>
2015-07-23 12:30:07 +02:00
<a href="{% url 'kb-page-history' slug=object.slug %}">{% trans 'History' %}</a>
<a href="{% url 'kb-page-edit' slug=object.slug %}">{% trans 'Edit' %}</a>
{% endblock %}
{% block content %}
{{ object.content|safe }}
{% endblock %}