2009-01-14 12:46:01 +01:00
|
|
|
- form_for [:admin, @ordergroup] do |@form|
|
2009-02-02 16:35:43 +01:00
|
|
|
- render :layout => 'shared/group_form' do
|
|
|
|
%div{:style => "float:right;width:40%"}
|
|
|
|
%p
|
|
|
|
= @form.label :contact_person
|
|
|
|
%br/
|
|
|
|
= @form.text_field :contact_person, :size => 20
|
|
|
|
%p
|
|
|
|
= @form.label :contact_phone
|
|
|
|
%br/
|
|
|
|
= @form.text_field :contact_phone, :size => 20
|
|
|
|
%p
|
|
|
|
= @form.label :contact_address
|
|
|
|
%br/
|
|
|
|
= @form.text_field :contact_address
|
2009-01-14 12:46:01 +01:00
|
|
|
|
|
|
|
%br{ :style => "clear:both" }
|
|
|
|
= submit_tag "Speichern"
|
|
|
|
|
|
|
|
|
= link_to "Abbrechen", admin_ordergroups_path
|