{% macro product_list(cfg, products, show_subsidized=False) %} {% set ns = namespace(any_subsidized=False) %} {% for p in products %} {% if p.subsidized %} {% set ns.any_subsidized = True %} {% endif %} {% endfor %} {% if not ns.any_subsidized %} {% set show_subsidized = False %} {% endif %} {% for product in products %} {# Placeholder price; updated by javascript #} {% set price = product.prices[0] %} {% if not product.subsidized or show_subsidized %}
A reduced-rate plan available to users who cannot pay the standard rates. Includes access to all features.
{% else %}All plans include access to all features.
{% endif %}