This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-11-16 12:08:37 +00:00
|
|
|
"""passbook administration overview"""
|
2018-11-11 12:41:48 +00:00
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
2018-11-16 08:10:35 +00:00
|
|
|
from passbook.admin.mixins import AdminRequiredMixin
|
2018-11-16 12:08:37 +00:00
|
|
|
from passbook.core.models import Application, Provider, Rule, User
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
|
2018-11-16 08:10:35 +00:00
|
|
|
class AdministrationOverviewView(AdminRequiredMixin, TemplateView):
|
2018-11-16 12:08:37 +00:00
|
|
|
"""Overview View"""
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
template_name = 'administration/overview.html'
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs['application_count'] = len(Application.objects.all())
|
|
|
|
kwargs['rule_count'] = len(Rule.objects.all())
|
|
|
|
kwargs['user_count'] = len(User.objects.all())
|
2018-11-16 10:40:24 +00:00
|
|
|
kwargs['provider_count'] = len(Provider.objects.all())
|
2018-11-11 12:41:48 +00:00
|
|
|
return super().get_context_data(**kwargs)
|