From 5e8f2da70ee6bf0ba7d58ad2930e8e77262562ad Mon Sep 17 00:00:00 2001 From: ouqiang Date: Thu, 18 May 2017 12:00:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=88=97=E8=A1=A8=E6=94=B9?= =?UTF-8?q?=E4=B8=BAtable=E5=B8=83=E5=B1=80=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/task/index.html | 83 +++++++++++++++++++++------------------ 1 file changed, 45 insertions(+), 38 deletions(-) diff --git a/templates/task/index.html b/templates/task/index.html index e69ee07..1e54776 100644 --- a/templates/task/index.html +++ b/templates/task/index.html @@ -41,7 +41,7 @@
@@ -50,43 +50,50 @@ -
- {{{range $i, $v := .Tasks}}} -
-
-
-
{{{.Task.Name}}} {{{if eq .Status 1}}} {{{else}}} {{{end}}} -
-

任务ID: {{{.Id}}}

-

状态: {{{if eq .Status 1}}}激活{{{else}}}停止{{{end}}}

-

cron表达式: {{{.Spec}}}

-

执行方式: {{{if eq .Protocol 1}}} HTTP {{{else if eq .Protocol 2}}} SSH {{{else if eq .Protocol 3}}}本地命令{{{end}}}

-

命令:{{{.Command}}}

-

超时时间:{{{if eq .Timeout -1}}}后台运行{{{else if gt .Timeout 0}}}{{{.Timeout}}}秒{{{else}}}不限制{{{end}}}

-

重试次数: {{{.RetryTimes}}}

-

是否允许多实例运行:{{{if gt .Multi 0}}}是{{{else}}}否{{{end}}}

- {{{if eq .Protocol 2}}} -

主机: {{{.Alias}}}-{{{.Name}}}

- {{{end}}} -

备注: {{{.Remark}}}

-
-
-
-
- 编辑 - {{{if eq .Status 1}}} - - {{{else}}} - - {{{end}}} -
- - 查看日志 -
-
-
- {{{end}}} -
+ + + + + + + + + + + + + + + + + {{{range $i, $v := .Tasks}}} + + + + + + + + + + + + + {{{end}}} + +
任务ID任务名称cron表达式执行方式超时时间重试次数单实例运行主机状态操作
{{{.Id}}}{{{.Task.Name}}}{{{.Spec}}}{{{if eq .Protocol 1}}} HTTP {{{else if eq .Protocol 2}}} SSH {{{else if eq .Protocol 3}}}本地命令{{{end}}}{{{if eq .Timeout -1}}}后台运行{{{else if gt .Timeout 0}}}{{{.Timeout}}}秒{{{else}}}不限制{{{end}}}{{{.RetryTimes}}}{{{if gt .Multi 0}}}否{{{else}}}是{{{end}}}{{{.Alias}}}-{{{.Name}}}{{{if eq .Status 1}}}激活{{{else}}}停止{{{end}}} +
+ 编辑 + {{{if eq .Status 1}}} + + {{{else}}} + + {{{end}}} +
+ + 查看日志 +
+
{{{ template "common/pagination" .}}}