Перешел на структуру шаблонов
All checks were successful
Auto-Deploy-Shop / deploy (push) Successful in 7s

This commit is contained in:
2026-01-25 22:12:30 +03:00
parent ac999ca6bc
commit b68837a2b7
12 changed files with 186 additions and 43 deletions

8
core/views.py Normal file
View File

@@ -0,0 +1,8 @@
# core/views.py
from django.shortcuts import render
def home(request):
return render(request, 'home.html')
def about(request):
return render(request, 'about.html')