{# Partial template for displaying MCPO status #} {# Expects 'mcpo_status' variable (string: RUNNING, STOPPED, ERROR, UNKNOWN) #} {# and optionally 'message' #}
MCPO Status: {% if mcpo_status == "RUNNING" %} check_circleRunning {% elif mcpo_status == "STOPPED" %} pause_circle_outlineStopped {% elif mcpo_status == "ERROR" %} error_outlineError (process not found, check logs) {% else %} help_outlineUnknown {% endif %}
{% if message %}

info_outlineMessage: {{ message }}

{% endif %}