{% extends 'main_header.html' %} {% block body %}
{% import 'block_enable_auto_refresh.html' as block_enable_refresh %} {{ block_enable_refresh.enable_auto_refresh() }}

NOTICE: list can contain processes from manual context.py update or decommissioned boxes

{%- for bc_entry in details -%} {% set action_url = '/supervisor/entry/stop/' if bc_entry.is_on else '/supervisor/entry/start/' %} {% set button_title = 'Stop' if bc_entry.is_on else 'Start' %} {% set button_icon = 'fa fa-stop' if bc_entry.is_on else 'fa fa-play' %} {%- endfor -%}
Box Id Process Name Is On PID
{{ bc_entry.box_id }} {{ bc_entry.process_name }} {{ bc_entry.is_on }} {{ bc_entry.pid }}
{% endblock %}