On Wednesday 21 June 2017 14:48:52 Mike Dewhirst wrote: > On 21/06/2017 11:48 AM, Ryne Everett wrote: > > Tinymce comes bundled with the project. Once you log into the admin > > a > > lot of content becomes inline-editable if that's what you're after. > > Ryne > > Yes it is. I installed Django 1.10.7 and Mezzanine 4.2.3 in a > virtualenv, adopted the identical database (Postgres 9.3) previously > used by Mezzanine 3.?, migrated the tables and pointed Gunicorn to the > new wsgi file. > > It all worked splendidly except the page contents in the Admin had no > tinymce controls and the field contents are plain text with html > markup everywhere.
Your first order of business is to determine where the problem is: - Is the js/css for tinymce inserted into the HTML? (backend issue) - Are there js errors generated because it's not found or ordering problems or ... ? (frontend issue) What you're looking for in the source is: <link href="/static/mezzanine/tinymce/tinymce.css" type="text/css" media="all" rel="stylesheet" /> <script type="text/javascript" src="/static/mezzanine/tinymce/tinymce.min.js"></script> <script type="text/javascript" src="/static/mezzanine/tinymce/jquery.tinymce.min.js"></script> <script type="text/javascript" src="/static/mezzanine/js/tinymce_setup.js"></script> -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
