summaryrefslogtreecommitdiff
path: root/app/views/common/_show_tournament.html.erb
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-06-30 10:26:26 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-06-30 10:26:26 -0400
commit7f6458d67fa9e7f67e18e97ac61d5575dd1ccb21 (patch)
treec3f24047853a693cf889bbc00b436758d4c154a0 /app/views/common/_show_tournament.html.erb
parenta8617d93a18ba0f1765fc58c38c26f51e2ff975d (diff)
parente2796a3f26c200123f81a9957b84378aad6fc952 (diff)
Merge branch 'css-rewrite'
Diffstat (limited to 'app/views/common/_show_tournament.html.erb')
-rw-r--r--app/views/common/_show_tournament.html.erb10
1 files changed, 4 insertions, 6 deletions
diff --git a/app/views/common/_show_tournament.html.erb b/app/views/common/_show_tournament.html.erb
index c0237b1..87a4f5b 100644
--- a/app/views/common/_show_tournament.html.erb
+++ b/app/views/common/_show_tournament.html.erb
@@ -24,22 +24,20 @@
<div class="col-md-2 col-sm-2 col-xs-2">
<% if signed_in? %>
<% if !target.players.include?(current_user) && target.status == 0 %>
- <%= form_tag(tournament_path(target), method: "put") do %>
- <p>
+ <%= form_tag(tournament_path(target), method: "put", role: :button) do %>
<input type="hidden" name="update_action" value="join">
<%= submit_tag("Join")%>
- <% end %>
- </p>
+ <% end %>
<% elsif target.players.include?(current_user)%>
<p class="message">You've signed up for this tournament!</p>
<% end %>
<% @user_bracket = target.brackets.find_by(user: current_user) %>
<% if target.status == 1 && target.stages.order(:id).first.scheduling_method == "elimination" && target.stages.order(:id).first.matches.order(:id).first.status < 2 && !@user_bracket %>
- <%= form_tag(tournament_brackets_path(target), method: "post") do %>
+ <%= form_tag(tournament_brackets_path(target), method: "post", role: :button) do %>
<%= submit_tag("Make Bracket") %>
<% end %>
<% elsif @user_bracket && target.status == 4 %>
- <%= form_tag(tournament_bracket_path(@tournament, @bracket), method: 'put') do %>
+ <%= form_tag(tournament_bracket_path(@tournament, @bracket), method: 'put', role: :button) do %>
<input type="hidden" name="update_action" value="results">
<%= submit_tag("Bracket Results") %>
<% end %>