mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-29 12:32:09 +01:00
6 lines
173 B
Python
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') |