Sha256: 89cdf5474915ba4988e9c1694fdb4bf94a1f6f094835231c6cdf4bc124e5b6f5

Contents?: true

Size: 1.35 KB

Versions: 6

Compression:

Stored size: 1.35 KB

Contents

<h1><%= @current_account.nil? ? "Unified Inbox" : @current_account.name %></h1>

<% if @current_account %>
  <div class="panel panel-default">
    <div class="panel-heading">Account Details</div>
    <div class="panel-body">
      <ul class="list-group">
        <li class="list-group-item">Owner: <%= @current_account.owner %></li>
        <li class="list-group-item">Account Number: <%= @current_account.account_number %></li>
        <li class="list-group-item">Bank Code: <%= @current_account.bank_code %></li>
        <li class="list-group-item">IBAN: <%= @current_account.iban %></li>
        <li class="list-group-item">Balance: <%= @current_account.balance.balance %> <%= @current_account.currency %></li>
      </ul>
    </div>
  </div>
<% end %>

<table class="table table-hover table-condensed">
  <thead><tr>
    <th>Date</th>
    <th>Name</th>
    <th>Account Number</th>
    <th>Purpose</th>
    <th style="text-align: right;">Amount</th>
  </tr></thead>
  <tbody>
    <% @transactions.each do |transaction| %>
      <tr>
        <td><%= transaction.value_date %></td>
        <td><%= transaction.name %></td>
        <td><%= transaction.account_number %></td>
        <td><%= transaction.purpose %></td>
        <td style="text-align: right; <% if transaction.amount < 0 %>color: red;<% end %>"><%= transaction.amount %></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
figo-1.4.2 web_demo/views/index.erb
figo-1.4.1 web_demo/views/index.erb
figo-1.4.0 web_demo/views/index.erb
figo-1.3.3 web_demo/views/index.erb
figo-1.2.5 web_demo/views/index.erb
figo-1.2.4 web_demo/views/index.erb