NoReverseMatch 在 /blog/2018/

请帮帮我。我不知道这个问题......有
什么问题?
Html 代码图像:

http://img1.mukewang.com/6124d1f000015e3f05890517.jpg

错误页面图片:

http://img1.mukewang.com/6124d1ff0001c87f19280963.jpg

博客/网址.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


尚方宝剑之说
浏览 189回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python