diff --git a/django/website/hid/__init__.py b/django/website/hid/__init__.py
index 9948ca8850f47ac83269031849f020bb65cd17fd..a543fbc40c6b07b2502dca747bf896b3b74078c9 100644
--- a/django/website/hid/__init__.py
+++ b/django/website/hid/__init__.py
@@ -1,7 +1,10 @@
 from dashboard.widget_pool import register_widget
+from hid.tabs.view_and_edit_table import ViewAndEditTableTab
 from hid.widgets.term_count_chart import TermCountChartWidget
 from hid.widgets.table import TableWidget
+from tabbed_page.tab_pool import register_tab
 
 
+register_tab('view-and-edit-table', ViewAndEditTableTab())
 register_widget('term-count-chart', TermCountChartWidget())
 register_widget('table-widget', TableWidget())