CSRF_TRUSTED_ORIGINS needs to [be set](https://docs.djangoproject.com/en/4.1/ref/settings/#std-setting-CSRF_TRUSTED_ORIGINS) for Django 4.0+ if you want any POST requests, aka the Django admin and any other form, to work in production. Maybe something in `settings.py` or elsewhere to at least alert the user to this need?
CSRF_TRUSTED_ORIGINS needs to be set for Django 4.0+ if you want any POST requests, aka the Django admin and any other form, to work in production.
Maybe something in
settings.pyor elsewhere to at least alert the user to this need?