{% extends "base.html" %} {% block app_content %} {% if not procs %}

Nothing is being executed yet.

{% else %}

Current Processes [Kill All]

{% for p in procs %}
        

{{p.name}} {% if p.terminated == 'Running' %} [Kill] {% endif %} ({{p.terminated}})

{{p.tail}}
{% endfor %} {% endif %} {% endblock %}