edit.html.haml 386 Bytes
- content_for :title, 'Edit App'
- content_for :action_bar do
  = link_to_copy_attributes_from_other_app
  = link_to 'destroy application', app_path(@app), :method => :delete, :data => { :confirm => 'Seriously?' }, :class => 'button'
  = link_to('cancel', app_path(@app), :class => 'button')

= form_for @app do |f|

  = render 'fields', :f => f

  %div.buttons= f.submit 'Update App'