Source code for shuup.discounts.admin.views._archive

# -*- 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 __future__ import unicode_literals

from django.utils.translation import ugettext_lazy as _

from shuup.admin.shop_provider import get_shop
from shuup.discounts.models import Discount
from shuup.utils.django_compat import reverse

from ._active_list import DiscountListView


[docs]class ArchivedDiscountListView(DiscountListView): mass_actions = [ "shuup.discounts.admin.mass_actions:UnarchiveMassAction", "shuup.discounts.admin.mass_actions:DeleteMassAction", ]
[docs] def get_queryset(self): return Discount.objects.archived(get_shop(self.request))
[docs] def get_context_data(self, **kwargs): context = super(ArchivedDiscountListView, self).get_context_data(**kwargs) context["title"] = _("Archived Product Discounts") return context
[docs] def get_object_url(self, instance): return reverse("shuup_admin:discounts.edit", kwargs=dict(pk=instance.pk))