Sha256: 3e7eaa66d24cc1a0edfd566d881744fadee7fc7b738763cffe0ca1322c298026
Contents?: true
Size: 479 Bytes
Versions: 1
Compression:
Stored size: 479 Bytes
Contents
<h1>Accounts</h1> <table> <thead> <tr> <th>Name</th> <th>Balance</th> <th></th> <th></th> </tr> </thead> <% @accounts.each do |a| %> <tr> <td><%= a.name %></td> <td><%= a.balance %></td> <td><%= link_to "Deposit", account_deposit_form_path(a) %></td> <td><%= link_to "Withdraw", account_withdraw_form_path(a) %></td> </tr> <% end %> </table> <%= link_to "Transfer", account_transfer_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
command_model-1.0.0 | examples/bank/app/views/accounts/index.html.erb |