We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13d9a77 commit d33d649Copy full SHA for d33d649
shop/cascade/plugin_base.py
@@ -45,12 +45,8 @@ class CatalogLinkForm(LinkForm):
45
Note: In this form class the field ``product`` is missing. It is added later, when the shop's
46
Product knows about its materialized model.
47
"""
48
- LINK_TYPE_CHOICES = [
49
- ('cmspage', _("CMS Page")),
+ LINK_TYPE_CHOICES = LinkForm.LINK_TYPE_CHOICES + [
50
('product', _("Product")),
51
- ('download', _("Download File")),
52
- ('exturl', _("External URL")),
53
- ('email', _("Mail To")),
54
]
55
56
product = ProductSelectField(
0 commit comments