{% for action in actions.free %}
{% set available = action.context == ['any'] or location.location_type in action.context %}
{% endfor %}
{# Premium Tier Actions #}
Premium Actions
{% for action in actions.premium %}
{% set available = action.context == ['any'] or location.location_type in action.context %}
{% set locked = user_tier not in ['premium', 'elite'] %}
{% endfor %}
{# Elite Tier Actions #}
Elite Actions
{% for action in actions.elite %}
{% set available = action.context == ['any'] or location.location_type in action.context %}
{% set locked = user_tier != 'elite' %}
{% endfor %}