当我使用 tinyMCE 适配器编辑纯文本项目时,一切正常,但之后无法通过 inplaceedit 编辑文本。
例如,如果我开始:
some unformatted text
然后我可以双击并编辑它,但如果它保存有任何类型的标记,例如:
<p>some unformatted <em>text</em></p>
然后我不能再双击并编辑它。更奇怪的是,如果我转到我的模板并添加更改 {% inplace_edit "item.about_story" adaptor="tiny" %}
- {% inplace_edit "item.about_story" | safe adaptor="tiny" %}
然后我的页面会呈现带有标记的未格式化文本,但它也会卡在 tinyMCE 编辑模式中。
我的项目位于此处以供参考: https ://github.com/originalsurfmex/addition_interiors_project
模型名称: class About
视图名称: class AboutDetail
模板名称: about_list.html
我的模型文件: https ://github.com/originalsurfmex/addition_interiors_project/blob/master/frontpage/models.py
我的意见文件: https ://github.com/originalsurfmex/addition_interiors_project/blob/master/frontpage/views.py
virtualenvironment:
python 3.3
django 1.6
django-inplaceedit-extra-fields==0.5.0
django-inplaceedit==1.3.0
django-grappelli==2.5.2
django-filebrowser==3.5.4