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
0
votes
1 answer

How do I get tinymce edit windows to look like the site pages in django mezzanine?

Mezzanine is looking good and working well but I'm having trouble when I edit some blog posts and pages because the tinymce edit window displays in its own style using a very small font. I need it to be at least roughly WYSIWYG. Following the…
Paul Whipp
  • 16,028
  • 4
  • 42
  • 54
0
votes
1 answer

Apply tinyMCE settings to dynamicly created textarea

I create lots of tinymce with django:
Viktor
  • 313
  • 2
  • 11
0
votes
1 answer

Can't save model with href tag in Django admin

I am using mezzanine cms which uses django-tinymce to provide RichTextField, I put the link like this using both link and html editor:

Facebook

When I save it, it automatically turns…
pynovice
  • 7,424
  • 25
  • 69
  • 109
0
votes
2 answers

django tinymce django filebrowset tinymce_popup.js 404

I'm facing a 404 object not found with django filebrowser and django-tinymce. The problem is, when I want to select an image previously uploaded, I can't continue to introduce it in my HTMLField. here are my settings : TINYMCE_SPELLCHECKER =…
DaschPyth
  • 195
  • 1
  • 2
  • 9
0
votes
2 answers

django admin tinymce for part of textareas

I'm using django admin + grappelli + tinymce from grappelli. It works perfect, but I can't figure out how to make an admin form with textareas and apply tinymce only for part of them. For example, I've two fields: description and meta-description. I…
rush
  • 2,484
  • 2
  • 19
  • 31
0
votes
1 answer

404 for django-grappelli-tinymce configuration

I'm getting this in my console for my TinyMCE configuration which came with Grappelli. I know 404 means it does not exit, but what should I do to get TinyMCE options on my models.TextField() on my admin panel. I did what the documentation of…
0
votes
1 answer

How to add script tag in django cms text editor

I am building a website on django-cms. In some pages I want to add javascript to django-cms pages(not templates). How can I escape the script tag in django-cms wysiwyg editor, whenever I tried to add alert in page, it get executed as soon as write…
Pradnya Mhatre
  • 208
  • 2
  • 8
0
votes
3 answers

django model inheritance and admin application

I have a django application in which I want to use model inheritance. The application contains one super model class Article and here is its code class Article(models.Model): english_title = CharField(max_length=200) arabic_title =…
-1
votes
1 answer

Remove bottom branding from tiny mce in django templates

I am using tiny mce HtmlField() in my django models. Every thing works file but the bottom branding in the field annoys me. Is there any way to remove branding in django template.
-1
votes
1 answer

Get the count of words in TinyMCE with Word Count plugin

I wanna get the count of words in the textarea and make changes to my users account based on the number of words. For example: a person writes 1000 words and its credibility goes up in the account (I use Django) …
-3
votes
1 answer

How to add a dynamic link {% url 'url_name' %} inside of a text field from Admin using Django-tinymce4-lite?

SO tinymce4 lie allows me to enter a link but when I enter {% url 'somelink' %} it doesnt get rendered properly. for example If my model is being render in the page of finance and I enter a link "2" the link would go to finance/2. I want to be able…
1 2 3
9
10