Integrate WYMeditor in Django Administration ============================================ I have managed to easily integrate WYMeditor into Django's administrative interface. Here is how I did it... First I copied the wymeditor to my project's static-served files directory, which in my case had an URL prefix of ``/site/media/`` There I put the ``wymeditor``, ``jquery`` and a special file ``admin_textarea.js``, that I have written myself consisting of: .. code-block:: javascript $(document).ready(function() { $('head', document).append(''); $("textarea").wymeditor({ updateSelector: "input:submit", updateEvent: "click" }); }); This file instructs the browser to load an additional WYMeditor's CSS and to convert each ``