我正在通过制作新闻/博客网络应用程序来学习Django。在我的主页上,我想列出我的文章,因此我使用了以下简单模板:
{% for article in last_articles %}
<div class="article">
<h3>{{ article.title }}</h3>
<p>{{ article.content | truncatewords_html:80 | safe }}</p>
<p><a href="{% url 'read' slug=article.slug id=article.id %}">Read More</a> </p>
</div>
<br/>
<hr/>
{% empty %}
<p>Nothing for the moment</p>
{% endfor %}
问题是我的article.content上有一些图片,所以我的问题是:有没有办法像截短文字一样删除它们,但只用于图片。我没有在官方文档中找到解决方案。
谢谢