【发布时间】:2012-09-28 08:09:49
【问题描述】:
我正在 django/webfaction 上创建一个博客。目前我的主页显示所有帖子的所有内容。我想对其进行调整,使其仅显示每篇文章的几行,并且每篇文章都以“阅读更多”链接结尾。如何做到这一点?我是 django 和 python 的新手。请帮助我。
home.html 中的代码:
{% block content %} {% for post in object_list %} <h2>{{ post.title }} </h2> <div class = "post_meta"> on {{ post.created}} </div> <div class = "post_body"> {{ post.body|safe|linebreaks}} </div> {% endfor %} {% endblock %}
提前致谢。
【问题讨论】:
标签: python html django django-templates