We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug When https://www.devday.de/admin/talk/talk/add/ -> 500 Internal Server Error
To Reproduce Steps to reproduce the behavior:
Expected behavior The form to create a new session is shown
Additional context
AttributeError at /admin/talk/talk/add/ 'NoneType' object has no attribute 'event' Request Method: GET Request URL: https://www.devday.de/admin/talk/talk/add/ Django Version: 2.2.11 Exception Type: AttributeError Exception Value: 'NoneType' object has no attribute 'event' Exception Location: /app/talk/admin.py in formfield_for_foreignkey, line 94 Python Executable: /usr/sbin/uwsgi Python Version: 3.8.2 Python Path: ['/app/', '.', '', '/usr/lib/python38.zip', '/usr/lib/python3.8', '/usr/lib/python3.8/lib-dynload', '/usr/lib/python3.8/site-packages', '/python-code/src/djangocms-column']
The text was updated successfully, but these errors were encountered:
The issue above is fixed in #289 but another issue has surfaced.
When saving the session we get another 404 due to a missing event_id in
File "/app/talk/models.py", line 118, in save super(Talk, self).save(force_insert, force_update, using, update_fields)
which leads to:
django.db.utils.IntegrityError: null value in column "event_id" of relation "talk_talk" violates not-null constraint
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When https://www.devday.de/admin/talk/talk/add/ -> 500 Internal Server Error
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The form to create a new session is shown
Additional context
The text was updated successfully, but these errors were encountered: