+---------------------------+
| |
| |
| \ | Django Solo helps working with singletons:
| /\ | database tables that only have one row.
| >=)'> | Singletons are useful for things like global
| \/ | settings that you want to edit from the admin
| / | instead of having them in Django settings.py
| |
| |
+---------------------------+
- You define the model that will hold you settings.
- django-solo gives helper parent class for your model and the admin classes.
- You get an admin interface that's aware you only have one object.
- You can retrieve the object from templates.
- By enabling caching, the database is not queried intensively.
# models.py
from django.db import models
from solo.models import SingletonModel
class SiteConfiguration(SingletonModel):
site_name = models.CharField(max_length=255, default='Site Name')
maintenance_mode = models.BooleanField(default=False)
def __unicode__(self):
return u"Site Configuration"
class Meta:
verbose_name = "Site Configuration"
verbose_name_plural = "Site Configuration"
# admin.py
from django.contrib import admin
from solo.admin import SingletonModelAdmin
from config.models import SiteConfiguration
admin.site.register(SiteConfiguration, SingletonModelAdmin)
# There is only one item in the table, you can get it this way:
from .models import SiteConfiguration
config = SiteConfiguration.objects.get()
This application requires Django version 1.4; all versions above should be fine.
Just install the package using something like pip and add solo
to
your INSTALLED_APPS
setting.
This is how you run tests:
./manage.py test tests --settings=solo.tests.settings
The standard Django admin does not fit well when working with singleton, for instance, if you need some global site settings to be edited in the admin. Django Solo provides a modified admin for that.
- In the admin home page where all applications are listed, we have a
config
application that holds a singleton model for site configuration. - The configuration object can only be changed, there's no link for "add" (1).
- The link to the configuration page (2) directly goes to the form page - no need for an intermediary object list page, since there's only one object.
- The edit page has a modified breadcrumb (3) to avoid linking to the intermediary object list page.
- From the edit page, we cannot delete the object (4) nor can we add a new one (5).
The singleton object can be retrieved from template by giving the Django model dotted path:
{% get_solo 'app_label.ModelName' as my_config %}
Example:
{% load solo_tags %}
{% get_solo 'config.SiteConfiguration' as site_config %}
{{ site_config.site_name }}
{{ site_config.maintenance_mode }}
By default caching is disabled: every time get_solo
retrieves the singleton
object, there will be a database query.
You can enable caching to only query the database when initially retrieving the object. The cache will also be updated when updates are made from the admin.
The cache timeout is controlled via the SOLO_CACHE_TIMEOUT
settings.
The cache backend to be used is controlled via the SOLO_CACHE
settings.
You can retrieve your singleton object in templates using the get_solo
template tag.
You can change the name get_solo
using the
GET_SOLO_TEMPLATE_TAG_NAME
setting.
GET_SOLO_TEMPLATE_TAG_NAME = 'get_config'
Django provides a way to define multiple cache backends with the CACHES
settings. If you want the singleton object to be cached separately, you
could define the CACHES
and the SOLO_CACHE
settings like this:
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
},
'local': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
},
}
SOLO_CACHE = 'local'
Caching will be disabled if set to None
.
The cache timeout in seconds.
SOLO_CACHE_TIMEOUT = 60*5 # 5 mins
The prefix to use for the cache key.
SOLO_CACHE_PREFIX = 'solo'