]> git.frykholm.com Git - tranquillity.git/blob - customerportal/views.py
3578d6a857d137fcc7e72c41ceb49b6d6a3d9380
[tranquillity.git] / customerportal / views.py
1 from django.shortcuts import render
2 from django.http import HttpResponse
3 from django.contrib.auth.decorators import login_required
4
5 @login_required
6 def index(request):
7
8 return render(request, 'customerportal/landing.html')
9