请帮帮我。我不知道这个问题......有
什么问题?
Html 代码图像:
错误页面图片:
博客/网址.py
urlpatterns = [
-- skip --
# Example: /2018/nov/
url(r'^(?P<year>\d{4})/$', PostYAV.as_view(), name='post_year_archive'),
-- skip --
]
博客/views.py
from blog.models import Post
from django.views.generic.dates import --skip--, YearArchiveView, --skip--
-- skip --
class PostYAV(YearArchiveView):
model = Post
date_field = 'modify_date'
make_object_list = True
相关分类