The “sites” framework
The “sites” framework
Django comes with an optional “sites” framework. It’s a hook for associating objects and functionality to particular websites, and it’s a holding place for the domain names and “verbose” names of your Django-powered sites.
Use it if your single Django installation powers more than one site and you need to differentiate between those sites in some way.
The sites framework is mainly based on a simple model:
-
class models.Site
-
A model for storing the
domain
andname
attributes of a website.-
domain
-
The fully qualified domain name associated with the website. For example,
www.example.com
.Changed in Dj
-