Using the URLconf defined in blog.urls,
Django tried these URL patterns, in this order:
-
admin/
-
[name=”index”]
-
<int:pk>/<str:slug>/
[name=”post”] -
story/<int:pk>/<str:slug>/
[name=”post”] -
add-comment/
[name=”add_comment”] -
search/
[name=”search”] -
categories/
[name=”all_categories”] -
category/<str:name>/
[name=”category”] -
tag/<str:name>/
[name=”category”] -
about/
[name=”about”] -
write-story/
[name=”write_story”] -
contact/
[name=”contact”] -
like-story/
[name=”like_story”] -
add-tags/
[name=”add_tags”] -
2257/
[name=”2257″] -
sw.js
[name=”sw”] -
sitemap.xml
[name=”sitemap”] -
register/
[name=”register”] -
activate/
[name=”account_activation”] -
login/
[name=”user_login”] -
logout/
[name=”user_logout”] -
profile/
[name=”profile”] -
tinymce/
-
^media/(?P<path>.*)$
The current path, 141/,
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.
