Source code for shoop.front.checkout.empty

# -*- 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.utils.translation import ugettext_lazy as _
from django.views.generic.base import TemplateView

from shoop.front.checkout import CheckoutPhaseViewMixin


[docs]class EmptyPhase(CheckoutPhaseViewMixin, TemplateView): identifier = "empty" title = _("Empty Basket") template_name = "shoop/front/checkout/empty.jinja"
[docs] def process(self): pass