Closed curtishall closed 8 months ago
I'm trying to access Recruitments ->Recruitments (which opens /recruitment/recruitment-view) and I get this error:
Clean install missing Table 'horilla.recruitment_surveytemplate' doesn't exist
<html> <body> <!--StartFragment--><div id="summary" style="padding: 10px 20px; margin: 0px; border-bottom: 1px solid rgb(221, 221, 221); background: rgb(255, 255, 204);"><h1 style="padding: 0px; margin: 0px; font-weight: normal;">ProgrammingError at /recruitment/recruitment-view</h1><pre class="exception_value" style="padding: 0px; margin: 10px 0px; font-size: 1.5em; white-space: pre-wrap; word-break: break-word; font-family: sans-serif; color: rgb(87, 87, 87);">(1146, "Table 'horilla.recruitment_surveytemplate' doesn't exist")</pre> Request Method: | GET -- | -- http://DELETED/recruitment/recruitment-view 4.2.7 ProgrammingError (1146, "Table 'horilla.recruitment_surveytemplate' doesn't exist") /usr/local/lib/python3.10/dist-packages/MySQLdb/connections.py, line 254, in query horilla.decorators.wrapped_view /usr/bin/python3 3.10.12 ['/root/horilla', '/usr/lib/python310.zip', '/usr/lib/python3.10', '/usr/lib/python3.10/lib-dynload', '/usr/local/lib/python3.10/dist-packages', '/usr/lib/python3/dist-packages'] Sun, 18 Feb 2024 12:06:35 -0600
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 page generated by the handler for this status code.
DEBUG = True
False
Bug Report
Description
I'm trying to access Recruitments ->Recruitments (which opens /recruitment/recruitment-view) and I get this error:
Clean install missing Table 'horilla.recruitment_surveytemplate' doesn't exist
Steps to Reproduce
You’re seeing this error because you have
DEBUG = True
in your Django settings file. Change that toFalse
, and Django will display a standard page generated by the handler for this status code.