diff --git a/app/views/weights/show.html.erb b/app/views/weights/show.html.erb
index 16504de..8ba75d3 100644
--- a/app/views/weights/show.html.erb
+++ b/app/views/weights/show.html.erb
@@ -18,6 +18,7 @@
Seed |
Record |
Seed Criteria |
+ Extra> |
Actions for wrestler |
@@ -30,6 +31,9 @@
<%= wrestler.original_seed %> |
<%= wrestler.season_win %>-<%= wrestler.season_loss %> |
<%= wrestler.criteria %> |
+ <% if wrestler.extra? == true %>
+ Yes
+ <% end %> |
<%= link_to 'Show', wrestler , :class=>"btn" %>
<% if user_signed_in? %>
<%= link_to 'Edit', edit_wrestler_path(wrestler) , :class=>"btn" %>
|