From b412166b35b3204d098d1d9a3dd327134eb9fde8 Mon Sep 17 00:00:00 2001
From: Alice Heaton <aliceh@aptivate.org>
Date: Wed, 5 Aug 2015 16:45:48 +0100
Subject: [PATCH] Register the view and edit table with the tab registry

---
 django/website/hid/__init__.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/django/website/hid/__init__.py b/django/website/hid/__init__.py
index 9948ca88..a543fbc4 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())
-- 
GitLab