{% comment %} Composant PricingTable pour afficher un tableau de comparaison de tarification Usage: {% endcomment %}
{% if responsive == 'true' %}
{% for tier in tiers %} {% endfor %}
{% else %}
{% for tier in tiers %} {% endfor %} {% for section in sections %} {% for feature in section.features %} {% for tier in tiers %} {% endfor %} {% endfor %} {% endfor %}
{% if tier.badge %}
{{ tier.badge }}
{% endif %}

{{ tier.title }}

{% if tier.description %}

{{ tier.description }}

{% endif %}
{{ tier.price }} {% if tier.billing_cycle %} {{ tier.billing_cycle }} {% endif %}
{% if tier.button_label %} {{ tier.button_label }} {% endif %}
{{ section.title }}
{{ feature.title }} {% if feature.tiers %} {% for tier_id, value in feature.tiers.items %} {% if tier_id == tier.id %} {% if value == True or value == "true" %} {% elif value == False or value == "false" %} {% else %} {{ value }} {% endif %} {% endif %} {% endfor %} {% endif %}
{% endif %}