add homepage app

This commit is contained in:
2024-11-24 16:54:08 +00:00
parent f44957b621
commit 4c4093b09d
10 changed files with 62 additions and 0 deletions

View File

@@ -41,6 +41,8 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'homepage'
]
MIDDLEWARE = [

View File

@@ -17,6 +17,9 @@ Including another URLconf
from django.contrib import admin
from django.urls import path
from homepage import views as homepage
urlpatterns = [
path('admin/', admin.site.urls),
path('', homepage.index, name="homepage")
]