summaryrefslogtreecommitdiff
path: root/app/views/tournaments/show.html.erb
diff options
context:
space:
mode:
authorTomer Kimia <tkimia@purdue.edu>2014-03-07 19:03:04 -0500
committerTomer Kimia <tkimia@purdue.edu>2014-03-07 19:03:04 -0500
commitfbac4c86b00ade6172c74da55d5561604c00e6b3 (patch)
tree63cb4ca3b3735bb27cea43323a6d8e16f8353cfa /app/views/tournaments/show.html.erb
parentbb84a760960c558857876e106bca94e31e15fe7d (diff)
FUCK IT WAS THE DAMN PERCENT IT COMES AFTER THE NUMBER NOT BEFORE WTF. the progress bar in the tournament is up
Diffstat (limited to 'app/views/tournaments/show.html.erb')
-rw-r--r--app/views/tournaments/show.html.erb14
1 files changed, 13 insertions, 1 deletions
diff --git a/app/views/tournaments/show.html.erb b/app/views/tournaments/show.html.erb
index 5629980..6b6cb25 100644
--- a/app/views/tournaments/show.html.erb
+++ b/app/views/tournaments/show.html.erb
@@ -5,6 +5,14 @@
<% end %>
<% end %>
+
+<div class="progress">
+ <%= tag("div", {:class => "progress-bar progress-bar-warning", :style => "width: " +(@tournament.players.count * 100 / (@tournament.min_players_per_team * @tournament.min_teams_per_match)).to_s + "%", "aria-valuemax" => "100", "aria-valuemin" => "0", "aria-valuenow" => (@tournament.players.count * 100 / (@tournament.min_players_per_team * @tournament.min_teams_per_match)).to_s, "role" => "progressbar"}) %>
+ <span class="sr-only">60% Complete (warning)</span>
+ </div>
+</div>
+<p><%= @tournament.players.count %> have signed up. <%= @tournament.min_players_per_team * @tournament.min_teams_per_match %> needed. </p>
+
<% if current_user.in_group?(:host) %>
<p>
<strong>Game:</strong>
@@ -53,7 +61,11 @@
<%= form_tag(tournaments_path.to_s + "/" + @tournament.id.to_s + "/edit", method: "get") do %>
<input type="hidden" name="close_action" value="close">
- <%= submit_tag("Close Tournament Registration") %>
+ <% if @tournament.players.count > @tournament.min_players_per_team * @tournament.min_teams_per_match %>
+ <%= submit_tag("Close Tournament Registration") %>
+ <% else %>
+ <%= submit_tag("Close Tournament Registration", disabled: true) %>
+ <% end %>
<% end %>
<%= link_to 'Edit', edit_tournament_path(@tournament) %> |