Stand With Ukraine

Django Content Settings

Django Content Settings - the most advanced admin editable setting

GitHub stars

The django-content-settings module is a versatile addition to the Django ecosystem, offering users the ability to easily create and manage editable variables directly from the Django admin panel. What sets this module apart is its ability to handle variables of any type without restricting their complexity. Thanks to an integrated caching system, these variables can be used efficiently in code, irrespective of their complexity.

Preview Edit Settings

With django-content-settings allows you to store variables with specific functionality in your code, that can be validated and previed in your django admin panel. The validators, previewers and all of the logic is stored in the setting definition.

Key Features

  1. Type-Agnostic Variable Creation: Users can create variables of any type, making the module highly adaptable to various needs.
  2. Editability from Django Admin Panel: Seamless integration with the Django admin panel allows for effortless editing of variables.
  3. Flexible permission model: Every setting can have its own permission rule for viewing, editing, fetching in API, and viewing changes history.
  4. Preview: Preview the setting before applying and the option to preview the setting changes right on site.
  5. Caching System: Ensures high performance, negating the impact of variable complexity on code execution speed.
  6. Export & Import: Massively dump configuration into a file and massively load configuration from the file using UI or/and commands.

Additional Admin Panel Functionalities

  • Change History: Track and review the history of changes made to the variables.
  • Preview System: Preview changes for different variable types before finalizing them.
  • Bulk Editing: Facilitate the simultaneous editing of multiple variable types.
  • Permission System: Control edit permissions for enhanced security and management.
  • Tags Navigation: Every setting has a set of tags, which allows you to organize flexible navigation even with 1000 settings in the system.

API Integration

The module comes with a built-in API system, enabling:

  • Reading of Individual or Group Variables: Allows for flexible data retrieval.
  • Access Permissions: Manage who can read the variables, ensuring data privacy and security.

How does it work

  • Setup. Here you can get step-by-step instruction.

  • Define the setting. To do so you need to define constant in content_settings.py in your app

# content_settings.py

from content_settings.types.basic import SimpleString

TITLE = SimpleString("Songs", help="The title of the site")

the code above defines a variable TITLE, with type SimpleString and default value Songs.

  • Migrate. In order to be able to edit raw value in Django Admin
$ python manage.py migrate

Technically, you can use setting in code even without migration. The migration is need to make setting editable in admin panel

  • Use it in your project. That is it. You can use setting TITLE in your code.

from content_settings.conf import content_settings

content_settings.TITLE

or use object settings that unites content settings and django settings in one place


from content_settings.conf import settings

settings.TITLE

In template:

<h2>{{CONTENT_SETTINGS.TITLE}}</h2>

Quick Look

You should be able to quickly see how it works using cs_test project in the repository. You need to have poetry installed.


$ git clone https://github.com/occipital/django-content-settings.git
$ cd django-content-settings
$ make init
$ make cs-test-migrate
$ make cs-test

the open http://localhost:8000/admin/ in your browser and you should see the django admin panel.

the admin user is admin with password 1.

Whats next?

  • Getting Started - this is a step-by-step guide to configure content settings in your project and add your first setting.
  • Setting Types and Attributes - the guide of all basic available types and attributes, including some examples.
  • Template Types - the most powerful part of content settings - Templates. Where setting raw value is a text, but setting value is a function.
  • Using Settings - multiple ways to access content settings in your project.
  • Permissions - different settings can have different permissions for different settings' functionality.
  • Defaults Context - allows you to group settings with common parameters, reducing redundancy and making your code cleaner and more maintainable.
  • API & Views - how to organize access to content settings through the API
  • User Interface for Django Admin - the guide is for end users, not only developers. It explains how to use the Django Admin panel for content settings.
  • How Caching is Organized - we want to make sure your content settings work as fast as possible. The guide explains how it is organized and what you can configure.
  • Available Django Settings - reference all available Django settings for content settings.
  • User Defined Settings - experimental functionality - how to give Django Admin users functionality for creation settings right from Django Admin UI.
  • Possible Extensions - wip - all of the ways how you can extend the basic content settings functionality.
  • Cookbook - several simple receipts you can use in your project.
  • Frequently Asked Questions - before asking questions, you might want to visit this section.
  • Glossary - the concept of content settings introduces several new terms, which we collected in this article
  • How to contribute - if you are willing to help - welcome to the team.
  • Changelog - what was introduces in every version.
  • Source Doc - we collect all the doc strings in one article for future reference.