Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 django-tinymce 输入格式化文本。我需要禁用表单中的整个字段和所有编辑器按钮,但找不到方法。如果有人知道如何做到这一点,请提供帮助。
您必须使用 HTMLread only属性。这是通过小部件执行此操作的技巧:
read only
myform.fields['status'].widget.attrs['readonly'] = True