there is a homepage now

This commit is contained in:
2024-08-17 17:41:24 +02:00
parent 671300ffae
commit fe58722e91
9 changed files with 65 additions and 37 deletions

View File

@ -14,9 +14,9 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from . import views
urlpatterns = [
path('admin/', admin.site.urls),
path("",views.index, name='patate')
]