From d2e42609cef1267f9e4aae862f9cc9bf8691415f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 7 Apr 2021 20:38:49 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Namespace=20the=20app=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://stackoverflow.com/questions/40206569/django-model-doesnt-declare-an-explicit-app-label --- sophon/core/apps.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sophon/core/apps.py b/sophon/core/apps.py index 26f78a8..d518a18 100644 --- a/sophon/core/apps.py +++ b/sophon/core/apps.py @@ -2,4 +2,5 @@ from django.apps import AppConfig class CoreConfig(AppConfig): - name = 'core' + name = 'sophon.core' + verbose_name = "Sophon Core"