diff --git a/totd/__init__.py b/totd/__init__.py index e69de29..c9dfc38 100644 --- a/totd/__init__.py +++ b/totd/__init__.py @@ -0,0 +1 @@ +default_app_config = 'totd.apps.TotdConfig' \ No newline at end of file diff --git a/totd/apps.py b/totd/apps.py index 9c13575..214f7d9 100644 --- a/totd/apps.py +++ b/totd/apps.py @@ -2,4 +2,6 @@ from django.apps import AppConfig class TotdConfig(AppConfig): + label = 'totd' name = 'totd' + verbose_name = 'Tip of the Day'