<%= link_to "Back to #{@tournament.name}", "/tournaments/#{@tournament.id}", :class=>"btn btn-default" %>

<% @weights.each do |weight| %> <%= link_to "#{weight.max}" , "/tournaments/#{@tournament.id}/weigh_in/#{weight.id}" %>
<% end %>
<% if tournament_permissions(@tournament) %> <%= form_for(@tournament) do |f| %>
<%= f.label :weigh_in_ref %>
<%= f.text_field :weigh_in_ref %>

<%= f.submit 'Submit', :class=>"btn btn-success" %> <% end %> <% end %>