mirror of
https://github.com/Rushilwiz/house-party.git
synced 2025-05-09 12:39:49 -04:00
6 lines
169 B
Python
6 lines
169 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
# Create your views here.
|
|
def index(request):
|
|
return render(request, 'frontend/index.html') |