diff --git a/app/views/layouts/_lsidebar.html.erb b/app/views/layouts/_lsidebar.html.erb
index 7b2ef6b..95f61cc 100644
--- a/app/views/layouts/_lsidebar.html.erb
+++ b/app/views/layouts/_lsidebar.html.erb
@@ -8,7 +8,7 @@
- <%= link_to "Tournament home" , "/tournaments/#{@tournament.id}/" %>
- <%= link_to "Brackets" , "/tournaments/#{@tournament.id}/brackets" %>
- - <%= link_to "Upcoming Matches" , "/tournaments/#{@tournament.id}/up_matches" %>
+ - <%= link_to "Bout Board" , "/tournaments/#{@tournament.id}/up_matches" %>
- <%= link_to "Team Scores" , "/tournaments/#{@tournament.id}/team_scores" %>
@@ -20,6 +20,7 @@
Pages
<%= link_to "Weigh In Page" , "/tournaments/#{@tournament.id}/weigh_in" %>
<%= link_to "All Matches" , "/tournaments/#{@tournament.id}/matches" %>
+
<%= link_to "Full Screen Bout Board" , "/tournaments/#{@tournament.id}/up_matches?print=true" %>
Time Savers
<%= link_to "Create High School Weights" , "/tournaments/#{@tournament.id}/create_custom_weights?customValue=hs",data: { confirm: 'Are you sure? This will delete all current weights.' } %>
diff --git a/app/views/tournaments/up_matches.html.erb b/app/views/tournaments/up_matches.html.erb
index 3facce1..d55fae2 100644
--- a/app/views/tournaments/up_matches.html.erb
+++ b/app/views/tournaments/up_matches.html.erb
@@ -1,9 +1,9 @@
<% cache ["up_matches", @tournament] do %>
<%= link_to "Back to #{@tournament.name}", "/tournaments/#{@tournament.id}", :class=>"btn btn-default"%>