summaryrefslogtreecommitdiff
path: root/app/views/tournaments/index.html.erb
blob: e174de7126da2b3d7555daaed2da71d1d146b2e2 (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
41
42
43
44
45
46
47
48
49
50
51
52
<h1>Listing Tournaments</h1>

<% if @tournaments.length > 0 %>
  <div id="tournament-list">
    
    <%# Each tournament has a div for its listing %>
    <% @tournaments.each do |t| %>
      <div class="row tournament-listing">
          <div class="col-md-2 "><%= image_tag 'http://www.gravatar.com/avatar/' + Digest::MD5.hexdigest(t.hosts.first.email) + '?s=100&d=mm' %></div>
          

          <div class="col-md-8">
            <%# "header" %>
            <%= link_to(t) do %>
              <h3><%= t.name %></h3>
            <% end %>

             <div class="row">
              <div class="col-md-4 host">
               Hosted by: <%= t.hosts.first.name %>
              </div>
              <div class="col-md-8 things">
                <p> Players per team </p>
                <p> two </p>
              </div>
            </div> 
          
          </div>
          

          <div class="col-md-2">
            <%# If this guy is logged in AND not in the tournament %>
            <% if signed_in? && !t.players.include?(current_user) %>
              <%= form_tag(tournament_path(t), method: "put") do %>
                <input type="hidden" name="update_action" value="join">
                  <%= submit_tag("Join") %>
                <% end %>
            <% else %>
              <p> You've signed up for this tournament! </p>
            <% end %>
          </div>

      </div>
    <% end %>

  </div>
<% else %>
  <p class="no-entries"> No tournaments going on right now... Why not start your own? </p>
<% end %>
<br>

<%= link_to 'New Tournament',  new_tournament_path, :class => "btn btn-warning btn-lg" %>