Listing Accounts

<%= for account <- @accounts do %> <% end %>
Username Domain Display name Description Private key Public key Suspended Uri Url
<%= account.username %> <%= account.domain %> <%= account.display_name %> <%= account.description %> <%= account.private_key %> <%= account.public_key %> <%= account.suspended %> <%= account.uri %> <%= account.url %> <%= link "Show", to: account_path(@conn, :show, account), class: "btn btn-default btn-xs" %> <%= link "Edit", to: account_path(@conn, :edit, account), class: "btn btn-default btn-xs" %> <%= link "Delete", to: account_path(@conn, :delete, account), method: :delete, data: [confirm: "Are you sure?"], class: "btn btn-danger btn-xs" %>
<%= link "New Account", to: account_path(@conn, :new) %>