-
Notifications
You must be signed in to change notification settings - Fork 30
error on routing to some views #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
did you manage to fix this |
Uh oh!
There was an error while loading. Please reload this page.
hi omar
i have problem on some routing
for example , when i click on "read more" blow any product i get this error:
Page not found (404)
Request Method: | GET -- | -- http://127.0.0.1:8081/single-blog.htmlUsing the URLconf defined in
core.urls
, Django tried these URL patterns, in this order:admin/
[name='home']
shop/ [name='shop']
shop/<slug:category_slug>/ [name='categries']
shop/<slug:category_slug>/<slug:product_details_slug>/ [name='product_details']
search/ [name='search']
review/<int:product_id>/ [name='review']
account/
cart/
orders/
^media/(?P<path>.*)$
^static/(?P<path>.*)$
The current path,
single-blog.html
, didn’t match any of these.or when click on product image , then i have this error:
Page not found (404)
Request Method: | GET -- | -- http://127.0.0.1:8081/single-blog.htmlUsing the URLconf defined in
core.urls
, Django tried these URL patterns, in this order:admin/
[name='home']
shop/ [name='shop']
shop/<slug:category_slug>/ [name='categries']
shop/<slug:category_slug>/<slug:product_details_slug>/ [name='product_details']
search/ [name='search']
review/<int:product_id>/ [name='review']
account/
cart/
orders/
^media/(?P<path>.*)$
^static/(?P<path>.*)$
The current path,
single-blog.html
, didn’t match any of these.when clicked on My Account:
Page not found (404)
Request Method: | GET -- | -- http://127.0.0.1:8081/orders/payment/my-account.htmlUsing the URLconf defined in
core.urls
, Django tried these URL patterns, in this order:admin/
[name='home']
shop/ [name='shop']
shop/<slug:category_slug>/ [name='categries']
shop/<slug:category_slug>/<slug:product_details_slug>/ [name='product_details']
search/ [name='search']
review/<int:product_id>/ [name='review']
account/
cart/
orders/
[name='payment_method']
orders/
checkout/ [name='checkout']
orders/
payment/ [name='payment']
orders/
payments/ [name='payments']
orders/
order_completed/ [name='order_complete']
^media/(?P<path>.*)$
^static/(?P<path>.*)$
The current path,
orders/payment/my-account.html
, didn’t match any of these.when clicked on My Cart:
Page not found (404)
Request Method: | GET -- | -- http://127.0.0.1:8081/orders/payment/cart.htmlUsing the URLconf defined in
core.urls
, Django tried these URL patterns, in this order:admin/
[name='home']
shop/ [name='shop']
shop/<slug:category_slug>/ [name='categries']
shop/<slug:category_slug>/<slug:product_details_slug>/ [name='product_details']
search/ [name='search']
review/<int:product_id>/ [name='review']
account/
cart/
orders/
[name='payment_method']
orders/
checkout/ [name='checkout']
orders/
payment/ [name='payment']
orders/
payments/ [name='payments']
orders/
order_completed/ [name='order_complete']
^media/(?P<path>.*)$
^static/(?P<path>.*)$
The current path,
orders/payment/cart.html
, didn’t match any of these.when i clicked on My Wishlist:
Page not found (404)
Request Method: | GET -- | -- http://127.0.0.1:8081/orders/payment/wishlist.htmlUsing the URLconf defined in
core.urls
, Django tried these URL patterns, in this order:admin/
[name='home']
shop/ [name='shop']
shop/<slug:category_slug>/ [name='categries']
shop/<slug:category_slug>/<slug:product_details_slug>/ [name='product_details']
search/ [name='search']
review/<int:product_id>/ [name='review']
account/
cart/
orders/
[name='payment_method']
orders/
checkout/ [name='checkout']
orders/
payment/ [name='payment']
orders/
payments/ [name='payments']
orders/
order_completed/ [name='order_complete']
^media/(?P<path>.*)$
^static/(?P<path>.*)$
The current path,
orders/payment/wishlist.html
, didn’t match any of these.and when i click on check out:
Page not found (404)
Request Method: | GET -- | -- http://127.0.0.1:8081/orders/payment/checkout.htmlUsing the URLconf defined in
core.urls
, Django tried these URL patterns, in this order:admin/
[name='home']
shop/ [name='shop']
shop/<slug:category_slug>/ [name='categries']
shop/<slug:category_slug>/<slug:product_details_slug>/ [name='product_details']
search/ [name='search']
review/<int:product_id>/ [name='review']
account/
cart/
orders/
[name='payment_method']
orders/
checkout/ [name='checkout']
orders/
payment/ [name='payment']
orders/
payments/ [name='payments']
orders/
order_completed/ [name='order_complete']
^media/(?P<path>.*)$
^static/(?P<path>.*)$
The current path,
orders/payment/checkout.html
, didn’t match any of these.The text was updated successfully, but these errors were encountered: