{% defer (url=endpoint) %}
{% set features = this %}
Profile string:
{{ profile }}
{% for slug, feature in features %}
{# Avoid showing private attributes. #}
{% if slug.substr(0, 2) != '__' %}
{% set klass = "present" if feature.present else "absent" %}
-
{{ feature.position }} - {{ feature.name }} ({{ slug }})
- {{ feature.description }}
{% if feature.apis != "" %}
- APIs: {{ feature.apis }}
{% endif %}
{% endif %}
{% endfor %}
{% end %}