How to create django site variables (NOT constants)?

I need to add a variable to Django. Important detail: I need a variable, not a constant, so simply adding it to settings.py is not an option. It is highly desirable to be able to change its value from the site admin panel. What is the most Django way to do this?

Вернуться на верх