6 lines
133 B
Python
6 lines
133 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
# Create your views here.
|
||
|
|
||
|
def index(request):
|
||
|
return render(request,'dashboard/index.html')
|