From 75e91b6690d54a5e51d62b126751befd607d3620 Mon Sep 17 00:00:00 2001 From: Haley Littlewood Date: Wed, 6 Jul 2016 16:32:54 +1200 Subject: [PATCH 1/2] Added an author cell to the table header of transactions --- app/views/accounts/transactions.html.haml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/views/accounts/transactions.html.haml b/app/views/accounts/transactions.html.haml index df12f962..f7ca228d 100644 --- a/app/views/accounts/transactions.html.haml +++ b/app/views/accounts/transactions.html.haml @@ -2,6 +2,7 @@ %table.transactions.table.table-striped.tablesorter %thead %th Date + %th Author %th Amount %th Description %th Running Total From dd505335fdd92411c6bf656e6b7efa1082057880 Mon Sep 17 00:00:00 2001 From: Haley Littlewood Date: Wed, 6 Jul 2016 17:33:24 +1200 Subject: [PATCH 2/2] Adding the author cell into the transfer_funds table --- app/views/accounts/transactions.html.haml | 1 - app/views/funds_transfers/_table.html.haml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/accounts/transactions.html.haml b/app/views/accounts/transactions.html.haml index f7ca228d..df12f962 100644 --- a/app/views/accounts/transactions.html.haml +++ b/app/views/accounts/transactions.html.haml @@ -2,7 +2,6 @@ %table.transactions.table.table-striped.tablesorter %thead %th Date - %th Author %th Amount %th Description %th Running Total diff --git a/app/views/funds_transfers/_table.html.haml b/app/views/funds_transfers/_table.html.haml index 8102b95f..df5eba2a 100644 --- a/app/views/funds_transfers/_table.html.haml +++ b/app/views/funds_transfers/_table.html.haml @@ -5,6 +5,7 @@ - if current_person.admin? || company_admin?(current_person, account.company) %th id %th Date + %th Author %th Amount %th Description %th From