All checks were successful
Auto-Deploy-Shop / deploy (push) Successful in 7s
8 lines
173 B
Python
8 lines
173 B
Python
# core/views.py
|
|
from django.shortcuts import render
|
|
|
|
def home(request):
|
|
return render(request, 'home.html')
|
|
|
|
def about(request):
|
|
return render(request, 'about.html') |