5 lines
116 B
Python
5 lines
116 B
Python
|
|
from django.shortcuts import render
|
||
|
|
|
||
|
|
def home_page(request):
|
||
|
|
return render(request, 'apps/dashboard/home.html')
|