Questions tagged [django-tinymce]

django-tinymce is a pluggable django app that contains a widget to render a form field as a TinyMCE editor.

django-tinymce is a pluggable django app that contains a widget to render a form field as a TinyMCE editor.

146 questions
3
votes
1 answer

Enable static for django-tinymce when using amazon-s3

The website on Django 1.10. Can't understand the work TinyMCE. The site statics are located on AWS S3. settings.py AWS_ACCESS_KEY_ID = os.environ.get('AWS_ACCESS_KEY_ID') AWS_SECRET_ACCESS_KEY =…
3
votes
2 answers

TinyMCE + html5 figure, img & figcaption plugin/insertion

I'm looking for a best practice approach to achieving a plugin in TinyMCE, to implement insertion of the HTML5 element
, along one or more child s, and a
. Whilst the HTML5 spec seems to allow for other figure types, i.e.…
Daryl
  • 1,469
  • 5
  • 18
  • 30
3
votes
1 answer

django-tinymce HTMLField covering model field description in admin/add

The Issue The name of the model field is not visible in Django's admin "add" page when using django-tinymce's tinymce_models.HTMLField(). The Name: field is in the picture, but the Description field is not. How can I display the Description text…
Avantol13
  • 1,009
  • 11
  • 21
3
votes
2 answers

Django - TinyMCE - admin - How to change editor size?

I can't seem to find any way to hange editor size in TinyMCE. I edit posts on my site in Django administration and to make it easier I looked for a better editor than just a textfield. I succesfully installed TinyMCE, but the editor is tiny, which…
3
votes
3 answers

django tiny mce is normal text field instead of rich text formatting? a fix please. Settings included

I installed Django tiny mce however i am getting a normal text area in my admin. Can anyone help me to correct this to a rich text area where i can acces text formating? here are my settings.py import os PROJECT_DIR =…
Stu
  • 1,811
  • 5
  • 23
  • 27
3
votes
2 answers

Django / TinyMCE Editor not working

I am using Django 1.8 with Python2.7. I have Installed TinyMCE using command "pip install django-tinymce" and included 'tinymcy' app in INSTALLED_APPS. INSTALLED_APPS = ( ... 'tinymce', ... ) Included in Project…
Muhammad Ahmed
  • 428
  • 2
  • 6
  • 17
3
votes
2 answers

500 error on displayable_links.js in django, mezzanine, nginx

I am getting a 500 error on displayable_links.js. I assume it is something with my ssl setup. Using Django 1.9.1, Python 2.7.5, PostgreSQL 9.2.14, and Mezzanine 4.1. Happens in debug and behind gunicorn. I have * for allowed hosts just to…
nowen
  • 196
  • 1
  • 5
3
votes
1 answer

django-tinymce plugins not loading django 1.8

I'm trying to implement django-tinymce in my project. I'd love to use some rich text capability when writing my blog posts, so I'm aiming at applying the HTMLField to the body in the admin. The settings that I am currently using are really simple -…
Dido Nenov
  • 71
  • 8
3
votes
1 answer

Just installed django-tinymce but the HTMLField is not showing up in the admin view

I used pip to install it, and followed the usage directions found here: http://django-tinymce.googlecode.com/svn/tags/release-1.5/docs/.build/html/usage.html under the section "The HTMLField model field type". I re-synced the db (not even sure that…
Rhubarb
  • 3,893
  • 6
  • 41
  • 55
3
votes
1 answer

django-tinymce: Using different options for different instances

I have a model with an HTMLField which can be edited with a TinyMCE control in the admin. However, I would like to be able to give different options to TinyMCE depending on which instance of the model is being edited. How can I do this? (For…
Ram Rachum
  • 84,019
  • 84
  • 236
  • 374
3
votes
2 answers

File browser not showing in Django-tinymce

I've been trying to get django-filebrowser working in django-tinymce (using MCE v4.0.x) for a while now, and still can't get the file browser callback to work. Here's what I've done so far: Installed TinyMCE via pip, added necessary settings…
benwad
  • 6,414
  • 10
  • 59
  • 93
3
votes
2 answers

Using TinyMCE for sites with a dark background

I'm using django-tinymce in my Django website. Through the admin interface one can edit a SimplePage object which has a tinymce.models.HTMLField. The website visitor will then see the html rendered in the content area of the page. Problem is, the…
Ram Rachum
  • 84,019
  • 84
  • 236
  • 374
3
votes
3 answers

Dynamic image upload/browsing path for django-tinymce

I would like to use tinyMCE as the editor for my django application, but have run into some trouble. I have everything setup, but it appears there is no way to specify the upload path for the image insert/upload function. I have two specific…
Psyferre
  • 135
  • 2
  • 9
3
votes
0 answers

django cms multiple images upload with django-tinymce

anybody knows ready to use solution for multiple images upload that can be easy integrated with django-cms and django-tinymce? Thanks!
Igor Pochechuev
  • 312
  • 1
  • 3
  • 8
3
votes
1 answer

Django-tinymce + django-filebrowser-no-grapelli doesn'work

I am confused a bit. I have tried different ways and manuals, but nothing works for me. What I use: django 1.5, django-page-cms, django-tinymce. I need filebrowser for tinymce for using in admin. I stopped at…
user1931780
  • 446
  • 1
  • 6
  • 17
1
2
3
9 10