36 lines
1.4 KiB
Text
36 lines
1.4 KiB
Text
- title t('.title', number: @financial_link.id)
|
|
|
|
- content_for :actionbar do
|
|
= link_to t('.add_bank_transaction'), index_bank_transaction_finance_link_path(@financial_link), remote: true, class: 'btn'
|
|
.btn-group
|
|
= link_to t('.add_financial_transaction'), index_financial_transaction_finance_link_path(@financial_link), remote: true, class: 'btn'
|
|
= link_to '#', data: {toggle: 'dropdown'}, class: 'btn dropdown-toggle' do
|
|
%span.caret
|
|
%ul.dropdown-menu
|
|
%li= link_to t('.new_financial_transaction'), new_financial_transaction_finance_link_path(@financial_link), remote: true
|
|
= link_to t('.add_invoice'), index_invoice_finance_link_path(@financial_link), remote: true, class: 'btn'
|
|
|
|
%table.table.table-striped
|
|
%thead
|
|
%tr
|
|
%th= t '.date'
|
|
%th= t '.type'
|
|
%th= t '.description'
|
|
%th= t '.amount'
|
|
%th
|
|
%tbody
|
|
- @items.each do |item|
|
|
%tr
|
|
%td
|
|
- if item[:link_to]
|
|
= link_to format_date(item[:date]), item[:link_to]
|
|
- else
|
|
= format_date item[:date]
|
|
%td= item[:type]
|
|
%td= item[:description]
|
|
%td.numeric{style: 'width:5em'}= format_currency item[:amount]
|
|
%td= link_to t('ui.delete'), item[:remove_path], :data => {:confirm => t('ui.confirm_delete', name: item[:description])}, :method => :delete,
|
|
class: 'btn btn-danger btn-mini'
|
|
|
|
%p
|
|
= @financial_link.note
|