3
我創建了一篇博客文章,併成功移植了我的博客文件後,我返回一個錯誤我去我的網站的博客頁面(無法解析餘數:':「Ymd」'從'post.date | date:「Ymd」')Django錯誤:無法解析餘數:':「Ymd」'from'post.date | date:「Ymd」'
我似乎無法找到這是否是一個語法錯誤或邏輯錯誤
HTML:
{% extends "personal/header.html" %}
{% block content %}
{% for post in object_list %}
<h5> {{ post.date|date: "Y-m-d"}} <a href="/blog/{{ post.id }}"> {{ post.title }} </a> </h5>
{% endfor %}
{% endblock %}
的Python(models.py):
from django.db import models
class Post (models.Model):
title = models.CharField(max_length=140)
body = models.TextField()
date = models.DateTimeField()
def __unicode__(self):
return self.title