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
Raw Normal View History

2013-05-28 09:30:20 +02:00
{% extends change_form_template|default:"admin/cms/page/plugin/change_form.html" %}
2013-07-09 18:03:28 +02:00
{% load admin_static %}
{% block extrahead %}
{{ block.super }}
<script>window.CKEDITOR_BASEPATH = "{{ CKEDITOR_BASEPATH }}";</script>
2014-03-05 08:49:02 +01:00
<script src="{% static "cms/js/modules/cms.base.js" %}"></script>
2013-12-09 08:18:30 +01:00
<script>
2013-07-09 18:03:28 +02:00
(function($) {
// CMS.$ will be passed for $
$(document).ready(function () {
CMS.API.Helpers.csrf('{{ csrf_token }}');
});
})(CMS.$);
</script>
{% endblock %}