Skip to content

Instantly share code, notes, and snippets.

@aarongough
Forked from andersosthus/_searchresults.html.erb
Created February 19, 2011 20:33
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save aarongough/835346 to your computer and use it in GitHub Desktop.
<% @searchresults.each do |movie| %>
Found: <%= movie.name %> | <%= movie.id %><br />
<% end %>
<center><h1>My movies</h1></center>
<%= form_tag movies_path, :method => :get, :remote => true do %>
<p>
<%= search_field_tag :search, params[:search] %>
<%= submit_tag "Search", :name => nil %>
</p>
<% end %>
<div id="searchresults">
<% if not @searchresults.nil? %>
<%= render @searchresults %>
<% end %>
</div>
<hr>
<%= render 'layouts/movies' %>
$("#searchresults").html("<%= escape_javascript(render(@searchresults)) %>");
class MoviesController < ApplicationController
def index
@title = "My movies"
@movies = Movie.all
if params[:search]
Tmdb.api_key = "XXX"
@searchresults = TmdbMovie.find(:title => params[:search], :expand_results => false)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment