summaryrefslogtreecommitdiff
path: root/app/views/search/go.html.erb
blob: 6e48b07bfbe9a053419cbd198c40706067f78080 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<h5 id="search-down">&#x25B2;  Advanced Search &#x25B2;</h5>
<div id="advanced-search">
	<p> This is where the search will go </p>
</div>

<%# 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 %>

<script type="text/javascript" language="javascript">

	$(document).ready(function() {

      $("#search-down").click(function(){
      	$("#search-down").text("▼ Advanced Search ▼").html();
        $("#advanced-search").slideDown( 'slow');
      });

    });
</script>