aboutsummaryrefslogblamecommitdiff
path: root/shardweb/lib/templates/identity/list.html.eex
blob: 1354264ffea8c6130795f1989662b45d070da1b3 (plain) (tree)































                                                                                     
<!-- Page Heading -->
<div class="row">
  <div class="col-lg-12">
    <h1 class="page-header">
      People on the network

    </h1>
    <ol class="breadcrumb">
      <li class="active">
        <i class="fa fa-users"></i> People
      </li>
    </ol>
  </div>
</div>
<!-- /.row -->

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


<table class="table table-striped">
  <tr>
    <th>User name</th>
    <th>Public key</th>
  </tr>
  <%= for {_id, manifest, pid} <- people_list() do %>
    <tr>
      <td><i class="fa fa-user"></i> <%= GenServer.call(pid, :get_info).nick %> </td>
      <td><small><%= manifest.pk |> Base.encode16 %></small></td>
    </tr>
  <% end %>
</table>