mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-08 14:00:16 -04:00
7 lines
152 B
Python
7 lines
152 B
Python
from django.shortcuts import render
|
|
|
|
|
|
# Create your views here.
|
|
def index(request, *args, **kwargs):
|
|
return render(request, 'front_end/index.html')
|