diff --git a/tmpl/index.tmpl b/tmpl/index.tmpl
index 6fe9aa2..46049b7 100644
--- a/tmpl/index.tmpl
+++ b/tmpl/index.tmpl
@@ -1,83 +1,111 @@
-
-
-
-
- {{range $c := .Counter}}
-

- {{end}}
+{{template "head"}}
+
+ {{range $c := .Counter}}
+

+ {{end}}
+
+
Workers
+
+ {{range $w := .Workers}}
+
+
{{ $w.Name }}
+
+
+
+ Address
+ |
+
+ {{ $w.Address }}
+ |
+
+
+
+ Connected
+ |
+
+ {{ $w.Connected }}
+ |
+
+
+
+ ConnectionChanged
+ |
+
+ {{ $w.ConnectionChanged }}
+ |
+
+ {{if $w.Connected}}
+
+
+ CPUs
+ |
+
+ {{ $w.Status.CPUCount }}
+ |
+
+
+
+ CPU Usage
+ |
+
+ {{ $w.Status.CPUUsage }}%
+ |
+
+
+
+ Memory
+ |
+
+ {{ $w.Status.MemoryTotal }} GB
+ |
+
+
+
+ Memory Usage
+ |
+
+ {{ $w.Status.MemoryUsage }}%
+ |
+
+ {{end}}
+
-
-
- {{range $w := .Workers}}
-
-
{{ $w.Name }}
-
-
-
- Address
- |
-
- {{ $w.Address }}
- |
-
-
-
- Connected
- |
-
- {{ $w.Connected }}
- |
-
-
-
- ConnectionChanged
- |
-
- {{ $w.ConnectionChanged }}
- |
-
- {{if $w.Connected}}
-
-
- CPUs
- |
-
- {{ $w.Status.CPUCount }}
- |
-
-
-
- CPU Usage
- |
-
- {{ $w.Status.CPUUsage }}%
- |
-
-
-
- Memory
- |
-
- {{ $w.Status.MemoryTotal }} GB
- |
-
-
-
- Memory Usage
- |
-
- {{ $w.Status.MemoryUsage }}%
- |
-
- {{end}}
-
-
- {{end}}
-
-
-
\ No newline at end of file
+ {{end}}
+
+
+
Tasks
+
+
+
+ ID |
+ Library |
+ Worker |
+ Type |
+ Status |
+ File |
+
+ {{range $t := .Tasks}}
+
+
+ {{ $t.ID }}
+ |
+
+ {{ $t.Library }}
+ |
+
+ {{ $t.Worker }}
+ |
+
+ {{ $t.Type }}
+ |
+
+ {{ $t.Status }}
+ |
+
+ {{ $t.File }}
+ |
+
+ {{end}}
+
+
+{{template "tail"}}
\ No newline at end of file