Page not found (404)

Request Method: GET
Request URL: http://lotdoc.cn/topics/1/

Using the URLconf defined in project.urls, Django tried these URL patterns, in this order:

  1. admin/
  2. md/upload/ [name='md-upload']
  3. [name='home']
  4. search/ [name='search-list']
  5. <str:slug>/list.html [name='category-detail']
  6. <str:slug>/detail.html [name='article-detail']
  7. archive/<int:year>/<int:month>.html [name='archive-list']
  8. tag/<str:slug>.html [name='tag-detail']
  9. sets/ [name='article-set-list']
  10. sets/<str:slug>/detail.html [name='article-set-detail']
  11. sitemap.xml [name='django.contrib.sitemaps.views.sitemap']
  12. ^static/(?P<path>.*)$
  13. ^media/(?P<path>.*)$

The current path, topics/1/, didn’t match any of these.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.