You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While the admin interface runs fine, the start page (index.html) cannot be found for some reason. What is going wrong here (templates and static were collected, settings.py and urls.py as on github master)?
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.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
While the admin interface runs fine, the start page (index.html) cannot be found for some reason. What is going wrong here (templates and static were collected, settings.py and urls.py as on github master)?
path("", TemplateView.as_view(template_name="index.html"), name="home"),
Page not found (404)
Request Method: GET
https://url.replaced/403.shtml/
mezzanine.pages.views.page
You’re seeing this error because you have
DEBUG = True
in your Django settings file. Change that toFalse
, and Django will display a standard 404 page.Beta Was this translation helpful? Give feedback.
All reactions