{% if tier.button_label %}
{{ tier.button_label }}
{% endif %}
{% if sections %}
{% for section in sections %}
{% for feature in section.features %}
{% 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 %}