Source code for shuup.front.apps.personal_order_history.dashboard_items

from django.utils.translation import gettext_lazy as _

from shuup.core.models import Order
from shuup.front.utils.dashboard import DashboardItem


[docs] class OrderHistoryItem(DashboardItem): title = _("Order history") template_name = "shuup/personal_order_history/dashboard.jinja" icon = "fa fa-sticky-note-o" view_text = _("Show all") _url = "shuup:personal-orders"
[docs] def get_context(self): context = super().get_context() context["orders"] = Order.objects.filter(customer=self.request.customer).order_by("-created_on")[:5] return context