diff --git a/app/views/schools/show.html.erb b/app/views/schools/show.html.erb
index 33b9706..56639f5 100644
--- a/app/views/schools/show.html.erb
+++ b/app/views/schools/show.html.erb
@@ -40,7 +40,9 @@
Record |
Seed Criteria |
Extra? |
+ <% if user_signed_in? %>
Actions |
+ <% end %>
@@ -58,13 +60,13 @@
<% if wrestler.extra? == true %>
Yes
<% end %> |
-
<% if user_signed_in? %>
+ |
<%= 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 %>
- |
+
+ <% end %>
<% end %>
<% end %>
diff --git a/app/views/weights/show.html.erb b/app/views/weights/show.html.erb
index 3985c0b..cd5d5c9 100644
--- a/app/views/weights/show.html.erb
+++ b/app/views/weights/show.html.erb
@@ -19,7 +19,7 @@
Record |
Seed Criteria |
Extra? |
- Actions for wrestler |
+ <% if user_signed_in? %>Actions for wrestler | <% end %>
@@ -43,10 +43,10 @@
<% if wrestler.extra? == true %>
Yes
<% end %> |
- <%= link_to 'Show', wrestler , :class=>"btn btn-default" %>
- <% if user_signed_in? %>
- <%= link_to 'Destroy', wrestler, method: :delete, data: { confirm: 'Are you sure?' } , :class=>"btn btn-danger" %> |
- <% end %>
+ <% if user_signed_in? %>
+ <%= link_to 'Show', wrestler , :class=>"btn btn-default" %>
+ <%= link_to 'Destroy', wrestler, method: :delete, data: { confirm: 'Are you sure?' } , :class=>"btn btn-danger" %> |
+ <% end %>
<% end %>
<% end %>