diff options
author | Alex Auvolat <alex@adnab.me> | 2018-10-11 20:14:47 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2018-10-11 20:14:54 +0200 |
commit | 6dcc2eefc3c8db0cadd7300536527dbd1905fa48 (patch) | |
tree | 3eb00337e1dd7bc47680b9fa16ec721eb216f4a9 /shardweb/lib/shard_web/templates/identity | |
parent | 123fbcf6abcfe61ef65cc82f1d22843dde722b23 (diff) | |
download | shard-6dcc2eefc3c8db0cadd7300536527dbd1905fa48.tar.gz shard-6dcc2eefc3c8db0cadd7300536527dbd1905fa48.zip |
Template changes
Diffstat (limited to 'shardweb/lib/shard_web/templates/identity')
-rw-r--r-- | shardweb/lib/shard_web/templates/identity/view.html.eex | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/shardweb/lib/shard_web/templates/identity/view.html.eex b/shardweb/lib/shard_web/templates/identity/view.html.eex index 7252f7c..5e57e02 100644 --- a/shardweb/lib/shard_web/templates/identity/view.html.eex +++ b/shardweb/lib/shard_web/templates/identity/view.html.eex @@ -1,4 +1,23 @@ -<h4>Identity</h4> +<!-- Page Heading --> +<div class="row"> + <div class="col-lg-12"> + <h1 class="page-header"> + <%= @nick %> <small><%= @pk |> Base.encode16 %></small> + </h1> + <ol class="breadcrumb"> + <li> + <i class="fa fa-users"></i> My identities + </li> + <li class="active"> + <i class="fa fa-user"></i> <%= @nick %> + </li> + </ol> + </div> +</div> +<!-- /.row --> + +<%= render ShardWeb.LayoutView, "flashes.html", assigns %> + <%= form_for @conn, identity_path(@conn, :update), [class: "form-horizontal"], fn f -> %> <div class="form-group"> |