aboutsummaryrefslogblamecommitdiff
path: root/shardweb/lib/templates/page/peer_list.html.eex
blob: f3855287b8c1ed27079f65e083436b043f5f0864 (plain) (tree)



















                                                          






                                   
                                                              

          

                                 
                                                                                  







                                          
                                                                                   




                                                                                         
<!-- Page Heading -->
<div class="row">
  <div class="col-lg-12">
    <h1 class="page-header">
      Peer list

    </h1>
    <ol class="breadcrumb">
      <li>
        <i class="fa fa-dashboard"></i> Dashboard
      </li>
      <li class="active">
        <i class="fa fa-globe"></i> Peer list
      </li>
    </ol>
  </div>
</div>
<!-- /.row -->

<%= render ShardWeb.LayoutView, "flashes.html", assigns %>

<table class="table table-striped">
  <tr>
    <th>Peer ID</th>
    <th>Address</th>
    <th>Port</th>
  </tr>
  <%= for {{:inet, ip, port}, _pid, auth} <- conn_list() do %>
    <tr>
      <td>
        <%= case auth do %>
          <% nil -> %>(anonymous)
          <% %SNet.Auth{his_pk: his_pk} -> %> <%= Shard.Keys.pk_display(his_pk) %>
        <% end %>
      </td>
      <td><%= :inet_parse.ntoa(ip) %></td>
      <td><%= port %></td>
    </tr>
  <% end %>
</table>

<%= form_for @conn, page_path(@conn, :add_peer), [class: "form-inline"], fn f -> %>
  <%= text_input f, :ip, [class: "form-control", placeholder: "Hostname / IP address"] %>
  <%= text_input f, :port, [class: "form-control", placeholder: "Port", value: "4044"] %>
  <%= submit "Add peer", [class: "btn btn-default"] %>
<% end %>