Bloodboiler
Bloodboiler

Reputation: 2092

Admin interface editable Django app settings

Is there a good way provide user configurable app settings in Django admin?

Basically I would like to have a nice forms where site owner can easily edit such one off information as his contact information, front page text content, etc. Sort of like a normal admin interface of a model, but limited to only one undeletable item in the model.

Upvotes: 9

Views: 7104

Answers (4)

fedosov
fedosov

Reputation: 2049

Found this: django-livesettings

Upvotes: 1

yvess
yvess

Reputation: 2114

I think django constance is the way to go. Alive and compatible with django 1.4.

Upvotes: 17

Jared Forsyth
Jared Forsyth

Reputation: 13162

I looked at dbsettings and liked some of what I saw, but I really wanted a more centralized, organized system. So I built django-appsettings. Enjoy :)

Upvotes: 3

Daniel Roseman
Daniel Roseman

Reputation: 599600

The third-party project django-dbsettings is ideal for this.

Upvotes: 3

Related Questions