From ced83335a5a338cb9c24956b96da526465d94df8 Mon Sep 17 00:00:00 2001 From: ficus Date: Sat, 15 Sep 2012 22:50:14 +0200 Subject: refactor to distributable format --- torouterui/templates/processes.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 torouterui/templates/processes.html (limited to 'torouterui/templates/processes.html') diff --git a/torouterui/templates/processes.html b/torouterui/templates/processes.html new file mode 100644 index 0000000..2e35162 --- /dev/null +++ b/torouterui/templates/processes.html @@ -0,0 +1,28 @@ +{% import "lib.html" as lib %} +{% extends "base.html" %} +{% block body %} +

System Running Process List

+ + + +
User + PID + %CPU + %MEM + Status + Started + Time + Command +{% for proc in process_list %} +
{{ proc.user }} + {{ proc.pid}} + {{ proc.perc_cpu }} + {{ proc.perc_mem }} + {{ proc.status_code }} + {{ proc.started }} + {{ proc.time }} +
{{ proc.command }}
+{% endfor %} +
+ +{% endblock %} -- cgit v1.2.3