Page not found (404)

Request Method: GET
Request URL: https://mentaea.ir/contact/None

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

  1. login/ [name='register_view']
  2. verify/ [name='verify']
  3. welcome/ [name='welcome']
  4. logout/ [name='logout']
  5. [name='home']
  6. posts/ [name='posts']
  7. detail/<str:slug> [name='detail']
  8. category/<str:slug> [name='category']
  9. category/<str:slug>/page/<int:page> [name='category']
  10. dashboard/ [name='dashboard']
  11. dashboard/personal/ [name='personal']
  12. dashboard/personal/<int:pk>/ [name='edit_personal']
  13. dashboard/exist_plan/ [name='exist_plan']
  14. dashboard/plan/<int:pk>/ [name='plan']
  15. dashboard/edit-plan/<int:pk>/ [name='edit_plan']
  16. dashboard/generate/ [name='generate']
  17. dashboard/profile/ [name='profile']
  18. contact/ [name='contact']
  19. page/<str:slug> [name='page']
  20. captcha/
  21. header [name='header']
  22. footer [name='footer']
  23. ckeditor/
  24. admin/
  25. ^static/(?P<path>.*)$
  26. ^media/(?P<path>.*)$

The current path, contact/None, 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.