6 lines
104 B
Python
6 lines
104 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def about_view(request):
|
|
return render(request, "about.html")
|