10 lines
162 B
Python
10 lines
162 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request):
|
|
return render(request, 'index.html')
|
|
|
|
|
|
def about(request):
|
|
return render(request, 'about.html')
|