Implement Insights page

This commit is contained in:
2022-07-21 13:51:55 +01:00
parent a56042376c
commit 185bda02ea
15 changed files with 652 additions and 274 deletions

13
core/ui/views/insights.py Normal file
View File

@@ -0,0 +1,13 @@
from django.contrib.auth.mixins import LoginRequiredMixin
from django.shortcuts import render
from django.views import View
class Insights(LoginRequiredMixin, View):
template_name = "ui/insights/insights.html"
plan_name = "drilldown"
def get(self, request):
if not request.user.has_plan(self.plan_name):
return render(request, "denied.html")
return render(request, self.template_name)