spec/dummy/app/views/labs/search.html.haml in medivo-0.0.2 vs spec/dummy/app/views/labs/search.html.haml in medivo-0.0.3

- old
+ new

@@ -1,18 +1,19 @@ // sample template for rendering lab info %script{:id=>"lab_item_template", :type=>"text/x-handlebars-template"} %li.lab_info .lab_image - %img{:src=>"{{image}}", :width=>'12px'}   + -#%img{:src=>"{{image}}", :width=>'12px'}   %div .lab_name {{lab_name}} .address {{address_without_comma}}, {{titleize city}}, {{state}} .phone Tel: {{telephone}} .link + // create your own /labs/select via :post method = form_for :lab, :url=>'/select', :method=>'post' do |f| %input{ :type=>:hidden, :name => 'id', :value=>"{{id}}" } %input{ :type=>:hidden, :name => 'lab_id', :value=>"{{lab_id}}" } %input{ :type=>:hidden, :name => 'lab_info[name]', :value=>"{{lab_name}}" } %input{ :type=>:hidden, :name => 'lab_info[address]', :value=>"{{address_without_comma}}" } @@ -24,10 +25,10 @@ // map display #map_canvas_container #map_canvas{:style => "width:500px; height:350px"} -// lab list display +// lab list display .. using ul/li style but you can change that #lab_list_container{ 'data-labs'=>@lab_data.to_json } %ul#lab_list // form for ajax lab searches ..the code to handle return data is in show_labs.coffee = form_tag(medivo.data_labs_path, :method=>:get, :id=>'lab_data_search', :remote=>true) do