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

<%# Show search results if a query was not nill %>
<% if !@query.empty? %>

	<% if @tournaments.empty? and @players.empty? %>
		<h3> No results found for "<%= @query %>" </h3>
	<% else %>
		<h3> Showing results for: <span><%= @query %></span></h3>
		<% 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_user", :target => p %>
		<% end %>

	<% end %>
<% end %>