I have added tinyMCE to my django admin which works fine but now I am getting errors showing up in firebug:
django is not defined [Break on this error] })(django.jQuery);
This is my custom code: [code] {% extends "admin/change_form.html" %}
{% block extrahead %}
$(document).ready(function() { tinyMCE.init({ mode : "textareas", theme : "advanced" //(n.b. no trailing comma, this will be critical as you experiment later) }); });{% endblock %} [/code]