]> git.frykholm.com Git - tranquillity.git/blame - customerportal/views.py
Make secret settings actually work.
[tranquillity.git] / customerportal / views.py
CommitLineData
26235f08
MF
1from django.shortcuts import render
2from django.http import HttpResponse
3from django.contrib.auth.decorators import login_required
4
5@login_required
6def index(request):
7
8 return render(request, 'customerportal/landing.html')
9