mirror of
https://github.com/Rushilwiz/house-party.git
synced 2025-04-27 23:09:51 -04:00
6 lines
186 B
Python
6 lines
186 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
# Create your views here.
|
|
def index(request, *args, **kwargs):
|
|
return render(request, 'frontend/index.html') |