Added base html

This commit is contained in:
Dmitriy Andreev
2021-02-07 15:02:08 +03:00
parent 2919761b2f
commit 972ee3e4d4
5 changed files with 104 additions and 1 deletions

View File

@@ -16,6 +16,9 @@ Including another URLconf
from django.contrib import admin
from django.urls import path
from main.views import main_page
urlpatterns = [
path('admin/', admin.site.urls),
path('', main_page),
]