Source code for shuup.admin.modules.customers_dashboard

# -*- coding: utf-8 -*-
# This file is part of Shuup.
#
# Copyright (c) 2012-2021, Shuup Commerce Inc. All rights reserved.
#
# This source code is licensed under the OSL-3.0 license found in the
# LICENSE file in the root directory of this source tree.
from django.utils.translation import ugettext_lazy as _

from shuup.admin.base import AdminModule

from .dashboard import get_active_customers_block


[docs]class CustomersDashboardModule(AdminModule): name = _("Customers Dashboard")
[docs] def get_dashboard_blocks(self, request): yield get_active_customers_block(request)