Source code for shuup.simple_cms.layout

# -*- 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.xtheme.layout import Layout


[docs]class PageLayout(Layout): identifier = "simple-cms-page-layout" help_text = _("Content in this placeholder is shown for this page only.")
[docs] def get_help_text(self, context): page = context.get("page") if not page: return "" return _("Content in this placeholder is shown for %(title)s only." % {"title": page.title})
[docs] def is_valid_context(self, context): return bool(context.get("page"))
[docs] def get_layout_data_suffix(self, context): return "%s-%s" % (self.identifier, context["page"].pk)