added views and admin security

This commit is contained in:
DerTyp187
2021-11-18 08:48:26 +01:00
parent 1c11ebbfcc
commit 74d8f41426
10 changed files with 147 additions and 7 deletions

View File

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