Files
tealcode-django-python/TealCode/analytics/views.py
2021-11-18 08:48:26 +01:00

6 lines
173 B
Python

from django.shortcuts import render
from django.contrib.auth.decorators import login_required
@login_required
def index(req):
return render(req, 'analytics/index.html')