Source code for shoop.admin.views.dashboard

# -*- coding: utf-8 -*-
# This file is part of Shoop.
#
# Copyright (c) 2012-2016, Shoop Ltd. All rights reserved.
#
# This source code is licensed under the AGPLv3 license found in the
# LICENSE file in the root directory of this source tree.
from django.views.generic.base import TemplateView

import shoop
from shoop.admin.dashboard import get_activity
from shoop.admin.module_registry import get_modules
from shoop.core.telemetry import try_send_telemetry


[docs]class DashboardView(TemplateView): template_name = "shoop/admin/dashboard/dashboard.jinja"
[docs] def get_context_data(self, **kwargs): context = super(DashboardView, self).get_context_data(**kwargs) context["version"] = shoop.__version__ context["notifications"] = notifications = [] context["blocks"] = blocks = [] for module in get_modules(): notifications.extend(module.get_notifications(request=self.request)) blocks.extend(module.get_dashboard_blocks(request=self.request)) context["activity"] = get_activity(request=self.request) return context
[docs] def get(self, request, *args, **kwargs): try_send_telemetry(request) return super(DashboardView, self).get(request, *args, **kwargs)