Skip to content

Tests: run tests with the ext-theme #11383

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

Merged
merged 15 commits into from
Jun 26, 2024
2 changes: 1 addition & 1 deletion readthedocs/proxito/views/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def _serve_file_from_python(self, request, path, storage):
return serve(request, path, root_path)

def _serve_401(self, request, project):
res = render(request, "401.html")
res = render(request, "errors/401.html")
res.status_code = 401
log.debug("Unauthorized access to documentation.", project_slug=project.slug)
return res
Expand Down
1 change: 1 addition & 0 deletions readthedocs/templates/errors/401.html