Moved financial_transaction into the new finance-namespace.
This commit is contained in:
parent
1d85b880f2
commit
c282cae79c
19 changed files with 167 additions and 153 deletions
20
app/views/finance/transactions/new_collection.html.haml
Normal file
20
app/views/finance/transactions/new_collection.html.haml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
- title _("Update multiple accounts")
|
||||
|
||||
- form_tag :action => "create_collection" do
|
||||
%p
|
||||
%b= _("Note") + ":"
|
||||
= text_field_tag "note"
|
||||
%p
|
||||
%table#OrderGroups{:style => "width:20em"}
|
||||
%tr
|
||||
%th=_ "Ordergroup"
|
||||
%th=_ "Amount"
|
||||
= render :partial => 'order_group', :collection => [1, 2, 3]
|
||||
|
||||
%p
|
||||
= link_to_function _("Add another ordergroup") do |page|
|
||||
- page.insert_html :bottom, :OrderGroups, :partial => 'order_group'
|
||||
%p
|
||||
= submit_tag _("Save")
|
||||
|
|
||||
= link_to _("Cancel"), :controller => 'finance/transactions'
|
||||
Loading…
Add table
Add a link
Reference in a new issue