{% extends 'main_header.html' %} {% block body %}
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_value = ' Stop' if bc_entry.is_on else ' Start' %} {%- endfor -%}
Box Id Process Name Is On PID
{{ bc_entry.box_id }} {{ bc_entry.process_name }} {{ bc_entry.is_on }} {{ bc_entry.pid }}
{% endblock %}