2017-04-08 09:15:30 +00:00
|
|
|
{{{ template "common/header" . }}}
|
|
|
|
|
|
|
|
<div class="ui grid">
|
|
|
|
{{{ template "host/menu" . }}}
|
|
|
|
|
|
|
|
<div class="twelve wide column">
|
|
|
|
<div class="pageHeader">
|
|
|
|
<div class="segment">
|
|
|
|
<h3 class="ui dividing header">
|
2017-04-09 09:55:55 +00:00
|
|
|
<i class="linux icon"></i>
|
2017-04-08 09:15:30 +00:00
|
|
|
<div class="content">
|
2017-04-09 09:55:55 +00:00
|
|
|
主机列表
|
2017-04-08 09:15:30 +00:00
|
|
|
</div>
|
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<table class="ui single line table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>主机名</th>
|
|
|
|
<th>别名</th>
|
|
|
|
<th>用户名</th>
|
|
|
|
<th>密码</th>
|
|
|
|
<th>端口</th>
|
|
|
|
<th>备注</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{{range $i, $v := .Hosts}}}
|
|
|
|
<tr>
|
|
|
|
<td>{{{.Name}}}</td>
|
|
|
|
<td>{{{.Alias}}}</td>
|
|
|
|
<td>{{{.Username}}}</td>
|
|
|
|
<td>{{{.Password}}}</td>
|
|
|
|
<td>{{{.Port}}}</td>
|
|
|
|
<td>{{{.Remark}}}</td>
|
|
|
|
</tr>
|
|
|
|
{{{end}}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{{ template "common/footer" . }}}
|