I am creating a portable Django server that will be used by different people on separate servers.
Am I able to create dynamic settings for each user that they can change?
For example Time Zone: instead of having
TIME_ZONE = "America/New_York"
in settings.py, can I have a settings page that allows them to update the configuration of the Django settings without them actually accessing the server?
I also want to use this with Cors Headers for the CSRF_TRUSTED_ORIGINS = []
setting.
Thank you.