Page not found (404)

Request Method: GET
Request URL: https://cssociety.org/home

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

  1. backoffice/ [name='backoffice']
  2. admin/
  3. [name='home']
  4. about/ [name='about']
  5. news/ [name='news']
  6. events/ [name='events']
  7. event/<uuid:event_id>/ [name='event_detail']
  8. job-openings/ [name='job_openings']
  9. job/<uuid:job_id>/ [name='job_detail']
  10. calls/ [name='calls']
  11. call/<uuid:call_id>/ [name='call_detail']
  12. community/ [name='community']
  13. community/<uuid:org_id>/ [name='organization_detail']
  14. yrcss/ [name='yrcss']
  15. ccs/ [name='ccs']
  16. about/council/ [name='about_council']
  17. about/contacts/ [name='about_contacts']
  18. about/executive-committee/ [name='about_executive']
  19. about/statutes/ [name='about_statutes']
  20. about/by-laws/ [name='about_by_laws']
  21. about/manifesto/ [name='about_manifesto']
  22. community/awards/ [name='community_awards']
  23. community/awards/<str:slug>/ [name='award_detail_by_slug']
  24. community/local-chapters/ [name='community_chapters']
  25. images/<str:image_id>/ [name='serve_image']
  26. images/<str:image_id> [name='serve_image_no_slash']
  27. media/<str:media_id>/ [name='serve_media']
  28. media/<str:media_id> [name='serve_media_no_slash']
  29. members/ [name='members']
  30. member/<uuid:member_id>/ [name='member_detail']
  31. membership/ [name='membership']
  32. membership/success-coupon/<uuid:success_id>/ [name='membership_success']
  33. privacy-policy/ [name='privacy_policy']
  34. _email/<uuid:email_uuid>/action/<str:action>/<path:encoded_url> [name='email_action_redirect']
  35. access/confirm/ [name='access_confirm']
  36. access/password-setup/ [name='password_setup']
  37. reserved/ [name='reserved']
  38. reserved/news/ [name='reserved_news']
  39. reserved/news/create/ [name='reserved_news_create']
  40. reserved/news/<uuid:news_id>/edit/ [name='reserved_news_edit']
  41. reserved/events/ [name='reserved_events']
  42. reserved/events/create/ [name='reserved_events_create']
  43. reserved/events/<uuid:event_id>/edit/ [name='reserved_events_edit']
  44. reserved/calls/ [name='reserved_calls']
  45. reserved/calls/create/ [name='reserved_calls_create']
  46. reserved/calls/<uuid:call_id>/edit/ [name='reserved_calls_edit']
  47. reserved/jobs/ [name='reserved_jobs']
  48. reserved/jobs/create/ [name='reserved_jobs_create']
  49. reserved/jobs/<uuid:job_id>/edit/ [name='reserved_jobs_edit']
  50. reserved/ballots/ [name='reserved_ballots']
  51. reserved/ballots/<uuid:ballot_id>/ [name='reserved_ballot_detail']
  52. reserved/organizations/ [name='reserved_organizations']
  53. reserved/organizations/create/ [name='reserved_organizations_create']
  54. reserved/organizations/<uuid:org_id>/edit/ [name='reserved_organizations_edit']
  55. reserved/edit-profile/ [name='edit_profile']
  56. reserved/upload-attachment/ [name='upload_attachment_async']
  57. ccs/by-laws/ [name='ccs_by_laws']
  58. ccs/steering-committee/ [name='ccs_steering']
  59. page/<str:page_title>/ [name='main_page']
  60. simple/<str:page_title>/ [name='simple_page']
  61. test-summernote/ [name='test_summernote']
  62. test-systempay/ [name='test_systempay']
  63. test-systempay/return/ [name='test_systempay_return']
  64. test-systempay/notification/ [name='test_systempay_notification']
  65. test-ses/ [name='test_ses']
  66. cssociety/
  67. members/
  68. ^static/(?P<path>.*)$

The current path, home, 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.