56 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "dashboard/monitor"}}
 | 
						|
{{template "common/header" .}}
 | 
						|
{{template "common/menu" .}}
 | 
						|
<div class="nb-container">
 | 
						|
    <div class="ui container">
 | 
						|
        <div class="ui grid">
 | 
						|
            <div class="right floated right aligned twelve wide column">
 | 
						|
                <button class="ui right labeled positive icon button" onclick="addOrEditMonitor()"><i
 | 
						|
                        class="add icon"></i> 添加监控
 | 
						|
                </button>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <table class="ui very basic table">
 | 
						|
            <thead>
 | 
						|
                <tr>
 | 
						|
                    <th>ID</th>
 | 
						|
                    <th>备注</th>
 | 
						|
                    <th>目标</th>
 | 
						|
                    <th>类型</th>
 | 
						|
                    <th>管理</th>
 | 
						|
                </tr>
 | 
						|
            </thead>
 | 
						|
            <tbody>
 | 
						|
                {{range $monitor := .Monitors}}
 | 
						|
                <tr>
 | 
						|
                    <td>{{$monitor.ID}}</td>
 | 
						|
                    <td>{{$monitor.Name}}</td>
 | 
						|
                    <td>{{$monitor.Target}}</td>
 | 
						|
                    <td>
 | 
						|
                        {{if eq $monitor.Type 1}}HTTP(S)/SSL证书
 | 
						|
                        {{else if eq $monitor.Type 2}}
 | 
						|
                        ICMP Ping
 | 
						|
                        {{else}}
 | 
						|
                        TCP 端口
 | 
						|
                        {{end}}
 | 
						|
                    </td>
 | 
						|
                    <td>
 | 
						|
                        <div class="ui mini icon buttons">
 | 
						|
                            <button class="ui button" onclick="addOrEditMonitor({{$monitor}})">
 | 
						|
                                <i class="edit icon"></i>
 | 
						|
                            </button>
 | 
						|
                            <button class="ui button"
 | 
						|
                                onclick="showConfirm('删除监控','确认删除此监控?',deleteRequest,'/api/monitor/'+{{$monitor.ID}})">
 | 
						|
                                <i class="delete icon"></i>
 | 
						|
                            </button>
 | 
						|
                        </div>
 | 
						|
                    </td>
 | 
						|
                </tr>
 | 
						|
                {{end}}
 | 
						|
            </tbody>
 | 
						|
        </table>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{{template "component/monitor"}}
 | 
						|
{{template "common/footer" .}}
 | 
						|
{{end}} |