welco/welco/kb/templates/kb/base.html

14 lines
391 B
HTML

{% extends "welco/base.html" %}
{% load i18n static %}
{% block breadcrumb %}
{{ block.super }}
<a href="{% url 'kb-home' %}">{% trans 'Knowledge Base' %}</a>
{% endblock %}
{% block extrascripts %}
{{ block.super }}
<script src="{% static "ckeditor/ckeditor/ckeditor.js" %}"></script>
<script type="text/javascript" src="{% static "ckeditor/ckeditor-init.js" %}"></script>
{% endblock %}