Sha256: beb84d5c0f915a66ecb3fa8c199781927435773e61584633034538213bd881f2

Contents?: true

Size: 1.63 KB

Versions: 4

Compression:

Stored size: 1.63 KB

Contents

<h1><%=h @account.name %> Account</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>

  <tr class="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>
</table>

<h1>Credit Transactions</h1>

<table>
  <tr>
    <th class="nobg">ID</th>
    <th>Description</th>
    <th>Credit Account</th>
    <th>Debit Account</th>
    <th>Amount</th>
    <th>Date</th>
  </tr>

<% @account.credit_transactions.each do |transaction| %>
  <tr class="<%= cycle("even", "odd") -%>">
    <td><%=h transaction.id %></td>
    <td><%=h transaction.description %></td>
    <td><%=h transaction.credit_account.name %></td>
    <td><%=h transaction.debit_account.name %></td>
    <td><%=h transaction.amount %></td>
    <td><%=h transaction.created_at %></td>
  </tr>
<% end %>
</table>

<h1>Debit Transactions</h1>

<table>
  <tr>
    <th class="nobg">ID</th>
    <th>Description</th>
    <th>Credit Account</th>
    <th>Debit Account</th>
    <th>Amount</th>
    <th>Date</th>
  </tr>

<% @account.debit_transactions.each do |transaction| %>
  <tr class="<%= cycle("even", "odd") -%>">
    <td><%=h transaction.id %></td>
    <td><%=h transaction.description %></td>
    <td><%=h transaction.credit_account.name %></td>
    <td><%=h transaction.debit_account.name %></td>
    <td><%=h transaction.amount %></td>
    <td><%=h transaction.created_at %></td>
  </tr>
<% end %>
</table>

Version data entries

4 entries across 4 versions & 2 rubygems

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