我正在开发一个Django项目,管理员可以使用TinyMCE设置一些内容.一切都很好,除了恼人的细节.
对于某些模型,需要在更改列表中显示以富文本模式编辑的字段.然后会发生这个字段,其中包含HTML标记.我想做的是拥有相同的
{{ field|striptags }}
在更改列表中.
不幸的是,事情并不像重写管理模板那么简单,因为内容已经到达包含管理HTML(< td>)的模板.所以,如果我只是替换
<tr class="{% cycle 'row1' 'row2' %}">{% for item in result %}{{ item }}{% endfor %}</tr>
同
<tr class="{% cycle 'row1' 'row2' %}">{% for item in result %}{{ item|striptags }}{% endfor %}</tr>
在’admin / templates / change_list_results.html’中,结果表显示为无样式.
How can I have a decent preview of these fields in the change list?
最佳答案 您可以在模型上创建一个额外的属性,返回剥离的字段并在list_display中使用它.
class YourClass(models.Model):
....
@property
def html_stripped(self):
from django.utils.html import strip_tags
return strip_tags(self.html_field)
并在您的ModelAdmin中:
list_display = ['html_stripped', ...]
list_display
的文档提到了一些其他选项,并为您提供有关此主题的更多详细信息.