diff --git a/dbtemplates/__init__.py b/dbtemplates/__init__.py index f2dc0e4..d1f79bc 100644 --- a/dbtemplates/__init__.py +++ b/dbtemplates/__init__.py @@ -1 +1,3 @@ __version__ = "2.0" + +default_app_config = 'dbtemplates.apps.DBTemplatesConfig' diff --git a/dbtemplates/apps.py b/dbtemplates/apps.py new file mode 100644 index 0000000..d913c95 --- /dev/null +++ b/dbtemplates/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig +from django.utils.translation import ugettext_lazy as _ + + +class DBTemplatesConfig(AppConfig): + name = 'dbtemplates' + verbose_name = _('Database templates')