标签: python django
如何根据单词数量按字词截断文本字段?
例如{{ post.content|truncatewords_by_percents:"20%" }}
{{ post.content|truncatewords_by_percents:"20%" }}
答案 0 :(得分:1)
不制作自定义模板标签是不可能的。内置模板标记仅允许按字符或单词进行截断。请参阅文档here。