drought/portal/views.py

6 lines
145 B
Python
Raw Normal View History

2018-07-06 06:08:28 +00:00
from django.http import HttpResponse
2018-07-06 05:46:03 +00:00
from django.shortcuts import render
2018-07-06 06:08:28 +00:00
def index(request):
2018-12-18 09:39:30 +00:00
return render(request, 'dashboard/index.html')