This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
djangocms-text-ckeditor/djangocms_text_ckeditor/templates/cms/plugins/text_plugin_change_form.html

16 lines
454 B
HTML

{% extends change_form_template|default:"admin/cms/page/plugin/change_form.html" %}
{% load admin_static %}
{% block extrahead %}
{{ block.super }}
<script>window.CKEDITOR_BASEPATH = "{{ CKEDITOR_BASEPATH }}";</script>
<script src="{% static "cms/js/modules/cms.base.js" %}"></script>
<script>
(function($) {
// CMS.$ will be passed for $
$(document).ready(function () {
CMS.API.Helpers.csrf('{{ csrf_token }}');
});
})(CMS.$);
</script>
{% endblock %}