{% from "/macros/simple-tooltip.html" import simpleTooltip %} {% from "/macros/profile/profile-upgrade.html" import UpgradeModal %} {% macro productActionButton(actionData, options, applicationType) %} {% set isAddToCart = actionData.actionType == "ADD_TO_CART" or actionData.actionType == "CONFIGURE" %} {% set isDomainBuyableButton = applicationType == "DOMAIN_RESELLER" and (actionData.actionType == "ADD_TO_CART" or actionData.actionType == "BUY" or actionData.actionType == "BUY_MORE") %} {% set hasAction = actionData.actionType != "NO_ACTION" %} {% if hasAction and not isDomainBuyableButton %} {{ actionData.label }} {{ simpleTooltip(actionData.tooltip, "bottom") }} {% endif %} {% if actionData.popup and actionData.actionType == "CAN_MOSI_UPGRADE" %} {{ UpgradeModal(actionData.popup) }} {% endif %} {% endmacro %}