From 32df12ee322bbe07b11758b87599ba192e4515d4 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 9 Jul 2014 23:28:37 -0400 Subject: clean up some styles and form stuff Just look at the diff. --- app/views/tournaments/show.html.erb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'app/views/tournaments/show.html.erb') diff --git a/app/views/tournaments/show.html.erb b/app/views/tournaments/show.html.erb index 8d56f46..55a8f14 100644 --- a/app/views/tournaments/show.html.erb +++ b/app/views/tournaments/show.html.erb @@ -100,23 +100,23 @@
<%# If user can join, and user hasn't joined already, show a join tournment button %> <% if @tournament.joinable_by?(current_user) && !@tournament.players.include?(current_user) %> - <%= form_tag(tournament_path(@tournament), method: "put", role: :button) do %> + <%= form_tag(tournament_path(@tournament), method: "put", class: :button_to) do %> <%= submit_tag("Join Tournament") %> <% end %> <% elsif @tournament.players.include?(current_user) %> - <%= form_tag(tournament_path(@tournament), method: "put", role: :button) do %> + <%= form_tag(tournament_path(@tournament), method: "put", class: :button_to) do %> <%= submit_tag("Leave Tournament") %> <% end %> <% end %> <%# If user is the host, let them start the tournment %> <% if @tournament.check_permission(current_user, :edit) %> - <%= form_tag(tournament_path(@tournament), method: "put", role: :button) do %> + <%= form_tag(tournament_path(@tournament), method: "put", class: :button_to) do %> <%= submit_tag("Start Tournament", disabled: (@tournament.players.count < @tournament.min_players_per_team * @tournament.min_teams_per_match)) %> <% end %> <%= link_to 'Edit Tournament', edit_tournament_path(@tournament), role: :button %> - <%= link_to 'Cancel Tournament', @tournament, method: :delete, data: { confirm: 'Are you sure?' }, role: :button %> + <%= button_to 'Cancel Tournament', @tournament, method: :delete, data: { confirm: 'Are you sure?' } %> <% end %>
-- cgit v1.2.3