14 lines
366 B
Python
14 lines
366 B
Python
from django.apps import AppConfig
|
|
from django.db.models.signals import post_migrate
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from .management import create_default_site
|
|
|
|
|
|
class SitesConfig(AppConfig):
|
|
name = 'django.contrib.sites'
|
|
verbose_name = _("Sites")
|
|
|
|
def ready(self):
|
|
post_migrate.connect(create_default_site, sender=self)
|