diff --git a/app/views/schools/index.html.erb b/app/views/schools/index.html.erb
index f1720a4..76059e5 100644
--- a/app/views/schools/index.html.erb
+++ b/app/views/schools/index.html.erb
@@ -14,7 +14,7 @@
| <%= school.name %> |
<%= school.score %> |
- <%= link_to 'Show', school , :class=>"btn" %><%= link_to 'Edit', edit_school_path(school), :class=>"btn" %><%= link_to 'Destroy', school, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %> |
+ <%= link_to 'Show', school , :class=>"btn btn-default" %><%= link_to 'Edit', edit_school_path(school), :class=>"btn btn-default" %><%= link_to 'Destroy', school, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %> |
<% end %>
diff --git a/app/views/schools/show.html.erb b/app/views/schools/show.html.erb
index c252f50..e943958 100644
--- a/app/views/schools/show.html.erb
+++ b/app/views/schools/show.html.erb
@@ -59,8 +59,8 @@
<% end %>
<% if user_signed_in? %>
- <%= link_to 'Show', wrestler , :class=>"btn" %>
- <%= link_to 'Edit', edit_wrestler_path(wrestler), :class=>"btn" %>
+ <%= link_to 'Show', wrestler , :class=>"btn btn-default" %>
+ <%= link_to 'Edit', edit_wrestler_path(wrestler), :class=>"btn btn-default" %>
<%= link_to 'Destroy', wrestler, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %>
<% end %>
|
diff --git a/app/views/static_pages/index.html.erb b/app/views/static_pages/index.html.erb
index a42e37e..5c38629 100644
--- a/app/views/static_pages/index.html.erb
+++ b/app/views/static_pages/index.html.erb
@@ -1,6 +1,6 @@
Pick A Tournament
<% if user_signed_in? %>
- <%= link_to 'New Tournament', new_tournament_path, :class=>"btn" %>
+ <%= link_to 'New Tournament', new_tournament_path, :class=>"btn btn-default" %>
<% end %>
@@ -16,9 +16,9 @@
<% @tournaments.each do |tournament| %>
| <%= tournament.name %> |
- <%= link_to 'Show', tournament, :class=>"btn" %>
+ | <%= link_to 'Show', tournament, :class=>"btn btn-default" %>
<% if user_signed_in? %>
- <%= link_to 'Edit', edit_tournament_path(tournament), :class=>"btn" %>
+ <%= link_to 'Edit', edit_tournament_path(tournament), :class=>"btn btn-default" %>
<%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %>
<% end %>
|
diff --git a/app/views/tournaments/show.html.erb b/app/views/tournaments/show.html.erb
index afce54a..bdca5a5 100644
--- a/app/views/tournaments/show.html.erb
+++ b/app/views/tournaments/show.html.erb
@@ -38,9 +38,9 @@
<% @schools.each do |school| %>
| <%= school.name %> |
- <%= link_to 'Show', school, :class=>"btn" %>
+ | <%= link_to 'Show', school, :class=>"btn btn-default" %>
<% if user_signed_in? %>
- <%= link_to 'Edit', edit_school_path(school), :class=>"btn" %>
+ <%= link_to 'Edit', edit_school_path(school), :class=>"btn btn-default" %>
<%= link_to 'Destroy', school, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %>
<% end %>
|
@@ -70,9 +70,9 @@
| <%= weight.max %> |
<%= weight.bracket_size %> |
- <%= link_to 'Show', weight, :class=>"btn" %>
+ | <%= link_to 'Show', weight, :class=>"btn btn-default" %>
<% if user_signed_in? %>
- <%= link_to 'Edit', edit_weight_path(weight), :class=>"btn" %>
+ <%= link_to 'Edit', edit_weight_path(weight), :class=>"btn btn-default" %>
<%= link_to 'Destroy', weight, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %>
<% end %>
|
diff --git a/app/views/weights/index.html.erb b/app/views/weights/index.html.erb
index 7a2d0c1..adde78e 100644
--- a/app/views/weights/index.html.erb
+++ b/app/views/weights/index.html.erb
@@ -12,7 +12,7 @@
<% @weights.each do |weight| %>
| <%= weight.max %> |
- <%= link_to 'Show', weight, :class=>"btn" %><%= link_to 'Edit', edit_weight_path(weight), :class=>"btn" %><%= link_to 'Destroy', weight, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %> |
+ <%= link_to 'Show', weight, :class=>"btn btn-default" %><%= link_to 'Edit', edit_weight_path(weight), :class=>"btn btn-default" %><%= link_to 'Destroy', weight, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %> |
<% end %>
diff --git a/app/views/weights/show.html.erb b/app/views/weights/show.html.erb
index 931a44e..e1e3416 100644
--- a/app/views/weights/show.html.erb
+++ b/app/views/weights/show.html.erb
@@ -43,9 +43,9 @@
<% if wrestler.extra? == true %>
Yes
<% end %> |
- <%= link_to 'Show', wrestler , :class=>"btn" %>
+ | <%= link_to 'Show', wrestler , :class=>"btn btn-default" %>
<% if user_signed_in? %>
- <%= link_to 'Edit', edit_wrestler_path(wrestler) , :class=>"btn" %>
+ <%= link_to 'Edit', edit_wrestler_path(wrestler) , :class=>"btn btn-default" %>
<%= link_to 'Destroy', wrestler, method: :delete, data: { confirm: 'Are you sure?' } , :class=>"btn btn-danger" %> |
<% end %>
diff --git a/app/views/wrestlers/index.html.erb b/app/views/wrestlers/index.html.erb
index e88964c..1f7a79d 100644
--- a/app/views/wrestlers/index.html.erb
+++ b/app/views/wrestlers/index.html.erb
@@ -18,7 +18,7 @@
<%= Weight.find(wrestler.weight_id).max %> |
<%= wrestler.seed %> |
<%= wrestler.original_seed %> |
- <%= link_to 'Show', wrestler , :class=>"btn" %><%= link_to 'Edit', edit_wrestler_path(wrestler), :class=>"btn" %><%= link_to 'Destroy', wrestler, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %> |
+ <%= link_to 'Show', wrestler , :class=>"btn btn-default" %><%= link_to 'Edit', edit_wrestler_path(wrestler), :class=>"btn btn-default" %><%= link_to 'Destroy', wrestler, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %> |
<% end %>