13 lines
547 B
HTML
13 lines
547 B
HTML
<div id="agent-detail">
|
|
<!-- <h2>Agent Details</h2> -->
|
|
<p>ID: {{.AgentID}}</p>
|
|
<p>Name: {{.AgentName}}</p>
|
|
<p>Type: {{.AgentType}}</p>
|
|
<p>IP Addr: {{.IPv4Address}}</p>
|
|
<p>Interactive Port: {{.AddPort}}</p>
|
|
<p>Initial Contact: {{.InitialContact}}</p>
|
|
<p>Last Contact: {{.LastContact}}</p>
|
|
<!-- <button hx-get="/proxyAgent?ip={{.IPv4Address}}" hx-target="#agentConnect" hx-swap="innerHTML">Open</button> -->
|
|
<a href="http://{{.IPv4Address}}:{{.AddPort}}" class="btn btn-info" target="_blank">Open</a>
|
|
</div>
|