summaryrefslogtreecommitdiff
path: root/app/views/search/go.html.erb
diff options
context:
space:
mode:
authortkimia <tkimia@purdue.edu>2014-04-22 18:04:41 -0400
committertkimia <tkimia@purdue.edu>2014-04-22 18:04:41 -0400
commit266602ea1e97d886f031b80add7a760034221f76 (patch)
tree8954ef28ad5d54e45515416f7dca9d371f41c0c2 /app/views/search/go.html.erb
parent27ed02ceaafe466307fc5a5d584aa329ea147be5 (diff)
basic search complete
Diffstat (limited to 'app/views/search/go.html.erb')
-rw-r--r--app/views/search/go.html.erb25
1 files changed, 21 insertions, 4 deletions
diff --git a/app/views/search/go.html.erb b/app/views/search/go.html.erb
index 12a76c8..6d5826f 100644
--- a/app/views/search/go.html.erb
+++ b/app/views/search/go.html.erb
@@ -1,6 +1,23 @@
-<h3> Showing results for: <span><%= @query %></span></h3>
+<%# Show search results if a query was not nill %>
+<% if !@query.empty? %>
+ <h3> Showing results for: <span><%= @query %></span></h3>
+ <% if @tournaments.empty? and @players.empty? %>
+ <p> No results found for "<%= @query %>" </p>
+ <% else %>
+ <% if @tournaments.length > 0 %>
+ <h4> Tournaments </h4>
+ <% end %>
+ <% @tournaments.each do |t| %>
+ <%= render "common/show_tournament", :target => t %>
+ <% end %>
-<% if @tounaments.empty? and @players.empty %>
- <p> No results found for "<%= @query %>" </p>
-<% else %> \ No newline at end of file
+ <% if @players.length > 0 %>
+ <h4> Players </h4>
+ <% end %>
+ <% @players.each do |p| %>
+ <%= render "common/show_player", :target => p %>
+ <% end %>
+
+ <% end %>
+<% end %> \ No newline at end of file