2009-02-12 21:38:41 +01:00
|
|
|
- title "Mehrer Konten aktualisieren"
|
2009-01-06 11:49:19 +01:00
|
|
|
|
2009-01-10 21:28:22 +01:00
|
|
|
- form_tag :action => "create_collection" do
|
2009-01-06 11:49:19 +01:00
|
|
|
%p
|
2009-02-12 21:38:41 +01:00
|
|
|
%b Notiz
|
2009-01-06 11:49:19 +01:00
|
|
|
= text_field_tag "note"
|
|
|
|
%p
|
2009-01-14 12:46:01 +01:00
|
|
|
%table#Ordergroups{:style => "width:20em"}
|
2009-01-06 11:49:19 +01:00
|
|
|
%tr
|
2009-02-12 21:38:41 +01:00
|
|
|
%th Bestellgruppe
|
|
|
|
%th Betrag
|
2009-01-14 12:46:01 +01:00
|
|
|
= render :partial => 'ordergroup', :collection => [1, 2, 3]
|
2009-01-06 11:49:19 +01:00
|
|
|
|
|
|
|
%p
|
2009-02-12 21:38:41 +01:00
|
|
|
= link_to_function "Neue Bestellgruppe hinzufügen" do |page|
|
2009-01-14 12:46:01 +01:00
|
|
|
- page.insert_html :bottom, :Ordergroups, :partial => 'ordergroup'
|
2009-01-06 11:49:19 +01:00
|
|
|
%p
|
2009-02-12 21:38:41 +01:00
|
|
|
= submit_tag "Transaktionen speichern"
|
2009-01-06 11:49:19 +01:00
|
|
|
|
|
2009-02-12 21:38:41 +01:00
|
|
|
= link_to "Abbrechen", :controller => 'finance/transactions'
|