{% if product_key_skipped and app.is_premium %}
Premium Feature
{% else %}
{% if not is_testnet_enabled or is_testnet_enabled and app.supports_testnet %}
{% if lnd_ready or ( not lnd_ready and not app.requires_lightning ) %}
{% if electrs_active or ( not electrs_active and not app.requires_electrs ) %}
{% if not is_installing_docker_images or ( is_installing_docker_images and not app.requires_docker_image_installation ) %}
{% if app.is_enabled or not app.can_enable_disable %}
{{app.app_tile_button_text}}
{% endif %}
{% if app.can_enable_disable %}
{% if not app.is_enabled %}
Enable
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}