Sha256: 930212c46c16c091e946d5b2551a8e3b3c9f4e0eeeb02629a8780cc23ad32762

Contents?: true

Size: 596 Bytes

Versions: 4

Compression:

Stored size: 596 Bytes

Contents

<h1>Listing Accounts</h1>

<table>
  <tr>
    <th class="nobg">ID</th>
    <th>Name</th>
    <th>Type</th>
    <th>Credit Balance</th>
    <th>Debit Balance</th>
    <th>Balance</td>
  </tr>

<% @accounts.each do |account| %>
  <tr class="<%= cycle("even", "odd") -%>">
    <td><%=h account.id %></td>
    <td><%=h account.name %></td>
    <td><%=h account.type %></td>
    <td><%=h account.credits_balance %></td>
    <td><%=h account.debits_balance %></td>
    <td><%=h account.balance %></td>
  </tr>
<% end %>
</table>

<br />

<h3>Go to <%= link_to 'Transactions', transactions_path %></h3>

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
blawzoo-plutus-0.5.3 app/views/accounts/index.html.erb
plutus-0.5.2 app/views/accounts/index.html.erb
plutus-0.5.1 app/views/accounts/index.html.erb
plutus-0.4.2 app/views/accounts/index.html.erb