mirror of
https://github.com/Rushilwiz/HiLo.git
synced 2025-04-09 14:40:16 -04:00
7 lines
138 B
Python
Executable File
7 lines
138 B
Python
Executable File
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
|
|
def homepage (request):
|
|
return render(request, 'homepage/index.html')
|