aboutsummaryrefslogtreecommitdiff
path: root/shardweb/lib/templates/identity/list.html.eex
blob: 1354264ffea8c6130795f1989662b45d070da1b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!-- 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>