diff --git a/RIGS/templates/rigboard.html b/RIGS/templates/rigboard.html
index 4e030bc1..9bad6eca 100644
--- a/RIGS/templates/rigboard.html
+++ b/RIGS/templates/rigboard.html
@@ -4,15 +4,37 @@
{% block content %}
- Key: ReadyAction RequiredNeeds MICCancelledNon-Rig
+ Key: ReadyAction RequiredNeeds MICCancelledNon-Rig
{% if perms.RIGS.add_event %}
{% button 'new' 'event_create' %}
{% endif %}
+ {% if not request.GET.legacy %}
+
View legacy rigboard
+ {% else %}
+
Go to new rigboard
+ {% endif %}
+
+{% if request.GET.legacy %}
+
-{% include 'partials/event_table.html' %}
+ {% if request.GET.legacy %}
+ {% include 'partials/legacy_event_table.html' %}
+ {% else %}
+ {% include 'partials/event_table.html' %}
+ {% endif %}
{% endblock %}