summaryrefslogtreecommitdiff
path: root/app/views/search/go.html.erb
blob: 6d5826f9ee1f13deea73ba9c5e3fa5bb10c86b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

<%# 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 @players.length > 0 %>
			<h4> Players </h4>
		<% end %>
		<% @players.each do |p| %>
			<%= render "common/show_player", :target => p %>
		<% end %>

	<% end %>
<% end %>