foodsoft/app/views/finance/transactions/new_collection.html.haml

20 lines
563 B
Plaintext
Raw Normal View History

2009-01-06 11:49:19 +01:00
- title _("Update multiple accounts")
- form_tag :action => "create_collection" do
2009-01-06 11:49:19 +01:00
%p
%b= _("Note") + ":"
= text_field_tag "note"
%p
%table#Ordergroups{:style => "width:20em"}
2009-01-06 11:49:19 +01:00
%tr
%th=_ "Ordergroup"
%th=_ "Amount"
= render :partial => 'ordergroup', :collection => [1, 2, 3]
2009-01-06 11:49:19 +01:00
%p
= link_to_function _("Add another ordergroup") do |page|
- page.insert_html :bottom, :Ordergroups, :partial => 'ordergroup'
2009-01-06 11:49:19 +01:00
%p
= submit_tag _("Save")
|
= link_to _("Cancel"), :controller => 'finance/transactions'