Add model and views for bank accounts
This commit is contained in:
parent
4b1e9a6f53
commit
f0a55fb951
24 changed files with 351 additions and 1 deletions
9
app/views/finance/bank_transactions/index.html.haml
Normal file
9
app/views/finance/bank_transactions/index.html.haml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
- title t('.title', name: @bank_account.name, balance: number_to_currency(@bank_account.balance))
|
||||
|
||||
.well.well-small
|
||||
= form_tag finance_bank_account_transactions_path, :method => :get, :remote => true,
|
||||
'data-submit-onchange' => true, class: 'form-search' do
|
||||
= text_field_tag :query, params[:query], class: 'input-medium search-query',
|
||||
placeholder: t('ui.search_placeholder')
|
||||
|
||||
#transactionsTable= render 'transactions'
|
||||
Loading…
Add table
Add a link
Reference in a new issue