Page not found (404)

Request Method: GET
Request URL: https://projects.software-design.de/project/print/2023-06-10

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

  1. [name='index']
  2. logout/ [name='logout']
  3. overview/ [name='overview']
  4. reports/ [name='reportOverview']
  5. project/<slug:slug>/<int:id> [name='project']
  6. project/<slug:slug>/<int:id>/<str:hash> [name='publicOverview']
  7. project/<slug:slug>/<int:id>/print/ [name='printOverview']
  8. project/<slug:slug>/<int:id>/documentation/ [name='wiki']
  9. project/<slug:slug>/<int:id>/downloads/ [name='downloads']
  10. project/<slug:slug>/<int:id>/download/<str:file> [name='download']
  11. project/<slug:slug>/<int:id>/documentation/print/ [name='printWiki']
  12. project/<slug:slug>/<int:id>/documentation/<path:page> [name='wikiPage']
  13. project/<slug:slug>/<int:id>/issues/ [name='issueList']
  14. project/<slug:slug>/<int:id>/issues/create [name='issueCreate']
  15. project/<slug:slug>/<int:id>/issues/<int:issue> [name='issue']
  16. project/<slug:slug>/<int:id>/milestones/ [name='milestones']
  17. project/<slug:slug>/<int:id>/milestone/<int:mid> [name='milestoneBoard']
  18. project/<slug:slug>/<int:id>/userSettings/ [name='userSettings']
  19. cache/clear/ [name='clearCache']
  20. cache/warmup/ [name='warmupCache']
  21. admin/
  22. i18n/
  23. ^uploads/(?P<path>.*)$

The current path, project/print/2023-06-10, 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.