Files
bonob/web/views/index.eta
2021-01-31 10:08:31 +11:00

18 lines
453 B
Plaintext

<% layout('./layout') %>
<div id="content">
<h1>bonob</h1>
<h2><%= it.bonob.name %> (<%= it.bonob.id %>) is <%= it.registration %></h2>
<h2>Devices</h2>
<ul>
<% it.devices.forEach(function(d){ %>
<li><%= d.name %> (<%= d.ip %>:<%= d.port %>)</li>
<% }) %>
</ul>
<h2>Services <%= it.services.length %></h2>
<ul>
<% it.services.forEach(function(s){ %>
<li><%= s.name %> (<%= s.id %>)</li>
<% }) %>
</ul>
</div>