Files
ppgo_job/views/task/viewlog.html
郝大全 980f49b486 修改列表和登录
登录设置默认一天
列表页各行换色并点击换色
修改返回的一些bug
2017-07-18 16:56:22 +08:00

48 lines
1.5 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- 新增任务 -->
<div class="container-fluid">
<div class="info-center">
<!--title-->
<div class="info-center">
<div class="page-header">
<div class="pull-left">
<h4>{{.pageTitle}}</h4>
</div>
<div class="pull-right">
<!-- <button type="button" class="btn btn-mystyle btn-sm refresh">刷新</button>
<button type="button" class="btn btn-mystyle btn-sm reback">返回</button> -->
</div>
</div>
</div>
</div>
<!--content-list-->
<div class="content-list">
<div class="search-box row">
<h4>{{.task.TaskName}}</h4>
日志ID#{{.data.id}} <br />
执行时间{{.data.start_time}} <br />
执行耗时{{.data.process_time}} <br />
输出大小{{.data.ouput_size}}
<hr />
<h4>任务命令</h4>
<pre class="pre-scrollable">{{.task.Command}}</pre>
<hr />
<h4>执行输出</h4>
<pre class="pre-scrollable">{{.data.output}}</pre>
<h4>错误输出</h4>
<pre class="pre-scrollable">{{.data.error}}</pre>
<hr />
<div class="btn-group">
<button class="btn btn-default reback"><span class="icon-chevron-left"></span> </button>
</div>
</div>
</div>
</div>