from django.utils.translation import gettext_lazy as _
from shuup.front.models import StoredBasket
from shuup.front.utils.dashboard import DashboardItem
[docs]
class SavedCartsItem(DashboardItem):
template_name = "shuup/saved_carts/dashboard_item.jinja"
title = _("Saved Carts")
icon = "fa fa-shopping-cart"
_url = "shuup:saved_cart.list"
[docs]
def get_context(self):
context = super().get_context()
context["carts"] = StoredBasket.objects.filter(
persistent=True,
deleted=False,
customer=self.request.customer,
shop=self.request.shop,
)
return context