From 15011e9ffd14e31e22a0ef953a2af6f75f95f21e Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Sat, 22 Sep 2018 01:35:17 -0400 Subject: [PATCH] Use verbose name for totd AppConfig --- totd/__init__.py | 1 + totd/apps.py | 2 ++ 2 files changed, 3 insertions(+) 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'