Sha256: d29bfdc9a64b5c590a7d71a4fa431dd69b203b1ed5fc62de0649a996a3811067
Contents?: true
Size: 653 Bytes
Versions: 4
Compression:
Stored size: 653 Bytes
Contents
<h1><%=h @transaction.description %> Transaction</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> <tr class="odd"> <td><%=h @transaction.id %></td> <td><%=h @transaction.description %></td> <td><%=link_to(h(@transaction.credit_account.name), account_path(@transaction.credit_account)) %></td> <td><%=link_to(h(@transaction.debit_account.name), account_path(@transaction.debit_account)) %></td> <td><%=h @transaction.amount %></td> <td><%=h @transaction.created_at %></td> </tr> </table> </table>
Version data entries
4 entries across 4 versions & 2 rubygems