8 lines
129 B
Python
Executable File
8 lines
129 B
Python
Executable File
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
|
|
|
|
def home(request):
|
|
return render(request, 'core/home.html')
|