5 = javascript_include_tag *%w(prototype effects dragdrop controls)
6 - %w(lowpro remote).each do |js|
7 = javascript_include_tag "lowpro/#{js}"
8 = javascript_include_tag 'application'
9 = stylesheet_link_tag 'application'
14 - all_songs.each do |s|
15 %li{:class => class_for_song(s), :id => dom_id(s)}
16 = image_tag('cd.png', :align => 'top', :border => 0, :class => 'drag_me')
17 = link_to s.title, edit_song_path(s)
18 /= draggable_element(dom_id(s), :revert => true, :handle => "'drag_me'")
20 = image_tag('cd_add.png', :align => 'top')
21 = link_to 'Add a new song...', new_song_path
24 - all_shows.each do |s|
25 %li{:class => class_for_show(s), :id => dom_id(s)}
26 = image_tag('film.png', :align => 'top', :border => 0)
27 = link_to s.title, edit_show_path(s)
29 = image_tag('film_add.png', :align => 'top')
30 = link_to 'Add a new show...', new_show_path
32 %p#success_box{:style => 'display:none'}
33 = image_tag('information.png')