Reworked helloworld

This commit is contained in:
2022-06-28 09:40:58 +03:00
parent 9235dd06c6
commit 23d55ed995
9 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -18,5 +18,5 @@ from django.urls import include, path
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('polls.urls')),
path('', include('helloworld.urls')),
]
+2 -2
View File
@@ -1,6 +1,6 @@
from django.apps import AppConfig
class PollsConfig(AppConfig):
class HelloworldConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'polls'
name = 'helloworld'