7 lines
138 B
Python
7 lines
138 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
|
||
|
def index(request):
|
||
|
# do fancy stuff here maybe
|
||
|
return render(request, 'portal/index.html')
|