{% if status == 'online' %}
Online
{% elif status == 'offline' %}
Offline
{% elif status == 'deploying' %}
Deploying
{% elif status == 'error' %}
Error
{% elif status == 'pending' %}
Pending
{% elif status == 'idle' %}
Idle
{% elif status == 'building' %}
Building
{% elif status == 'success' %}
Success
{% elif status == 'failed' %}
Failed
{% else %}
{{ status }}
{% endif %}