Questions tagged [django-wysiwyg]

13 questions
3
votes
1 answer

django summernote not working properly

I am using django-summernote as a wysiwyg editor. And till now, I can save the post from the summernote editor and can display it too using the safe filter. But some of its functionalities are not there in my template. There is no image upload…
2
votes
1 answer

Problem with displaying content made with WYSIWYG in django admin

In one of my projects there was need to implement WYSIWYG-editor into django admin. I've installed http://code.google.com/p/django-tinymce/. Everything works well, but there is a problem with rendering the content made with WYSIWYG-editor. As a…
megido
  • 4,135
  • 6
  • 29
  • 33
2
votes
0 answers

django-wysiwyg-redactor doesn't work in inlines

So I am using django-wysiwyg-redactor==0.4.9 and Django==1.9. The issue described here. I tried a trick in comments, but that didn't help. Also in browser's console I run this code directly to needed…
belek
  • 907
  • 9
  • 35
2
votes
4 answers

Using Bootstrap wysiwyg text editor in Django Form

I am using Django and Bootrap 2.32. I want to include this wysiwyg-bootrap-themed text editor: http://mindmup.github.io/bootstrap-wysiwyg/. The usage of this editor is fairly simple, including $('#editor').wysiwyg(); in the JS-declaration will…
1
vote
1 answer

How to get rtf displayed in Django app?

I'm creating an blog app in Django. In a form I'm using ckeditor in order to get the rich text format from the user. Now the data is saved in the database in the RTF with all tags. Now I want to retrieve data from database and display it to the user…
1
vote
1 answer

How to set django-wysiwyg to the field in inline formset?

I have inline formset. And I use django-wysiwyg to set WYSIWYG editor on some fields. When page is loaded, everything works perfectly. I use {% wysiwyg_editor form.worktime.auto_id %} to set editor on field. But when I dynamicaly add one more form…
belek
  • 907
  • 9
  • 35
1
vote
0 answers

django-wysiwyg-redactor / django1.8 / python2.7 can't upload image

I use django-wysiwyg-redactor with django 1.8 and python 2.7.9. Here is my code : settings.py: INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', …
Laurent
  • 1,710
  • 4
  • 25
  • 46
1
vote
1 answer

Make django-wysiwyg work on django pages

I have a TextField for description on one of my forms, and i want to apply reich text editor for that so tried to use this package, but i am unable to make it work below are my settings settings.py INSTALLED_APPS = ( ..... ..... #…
Shiva Krishna Bavandla
  • 25,548
  • 75
  • 193
  • 313
0
votes
2 answers

django-wysiwyg: Use YUI SimpleEditor instead of the default Editor

I'm using django-wysiwyg in my django app, and by default it makes use of YUI's Editor. I'd rather it to use the SimpleEditor, because it's, well, simpler. Is there an easy way of doing this that doesn't require forking the project? :)
abyx
  • 69,862
  • 18
  • 95
  • 117
0
votes
1 answer

How do I modify my Django settings for AWS Static files to accoomade for django summernote

I am using django-summernote as a wysiwyg editor. The editor works fine in my development stage. Where my Django setting is using the below code STATIC_URL = '/static/' STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')] STATIC_ROOT =…
0
votes
1 answer

django-wysiwyg-redactor's table plugin button is not showing on the toolbar

I am using django-wysiwyg-redactor. Redactor is showing and working fine, but Table plugin is not working. It's not even showing on the toolbar. That's what I have: class MyModel(models.Model): title = models.CharField(max_length=60) text =…
belek
  • 907
  • 9
  • 35
0
votes
1 answer

WYSIWYG editor pastes html tags in output textfield

I use this redactor for admin site django-wysiwyg-redactor But when I enter some text, it pastes it with html tags. When discovering my source code, I noticed that html code that is responsible for my input data, is placed in quotes.
Andrew
  • 391
  • 2
  • 4
  • 12
-2
votes
2 answers

WYSIWYG form for users in Django CMS

Recently I started using Django CMS, it turns out to be a great tool for web developer. But one thing I couldn't have achieved so far is creating a form for users so they could submit some content created with WYSIWYG editor. I thought maybe…
PookyFan
  • 785
  • 1
  • 8
  • 23