有个需求是15天内的文章要添加一个 new 的图标提示
1. 从数据库获取前面8条数据
articlelist1 = Article.objects.filter(column = Column.objects.get(name="公告栏")).order_by("-stick").order_by("-id").all()[:8]
2. 需要使用自定义过滤器来现实时间对比,因为mysql保存时间类型是有时区的,所以不能直接比较,把字符串转成时间类型再进行对比,要注意对比的时候,年月日就要和年月日对比,年月日时分秒就要和年月日时分秒对比
@register.filter
def isNew(dateValue):
newSpan = ''
date1 = (datetime.strptime(dateValue, "%Y.%m.%d").date() + timedelta(days = 15))
nowDate = datetime.now().date()
if date1 >= nowDate:
newSpan = '<img class="new-a" src="static/images/home/new_a.gif" />'
return newSpan
3. 前台模版输出过滤器,要注意html要进行安全过滤,要不然就是一个html字符串,无法渲染
{% for foo in articlelist1 %}
<li class="cf">
<a href="/news/{{ foo.pk }}/" title="{{ foo.title }}">{{ foo.title }}</a>{{ foo.pub_date|date:'Y.m.d'|isNew|safe }}<span>{{ foo.pub_date| date:'Y.m.d' }}</span>
</li>
{% endfor %}