diff --git a/django/website/hid/__init__.py b/django/website/hid/__init__.py
index 23fdd2f2526a431c4355d761f461d123f8d6783d..ec07e109f57010e2b83ee066c51f721e960e164b 100644
--- a/django/website/hid/__init__.py
+++ b/django/website/hid/__init__.py
@@ -1,5 +1,7 @@
 from dashboard.widget_pool import register_widget
 from hid.widgets.chart import QuestionChartWidget
+from hid.widgets.table import TableWidget
 
 
 register_widget('question-chart-widget', QuestionChartWidget())
+register_widget('table-widget', TableWidget())
diff --git a/django/website/hid/templates/hid/widgets/table.html b/django/website/hid/templates/hid/widgets/table.html
new file mode 100644
index 0000000000000000000000000000000000000000..c3deddc88cdacec7329d1f241375bdf40d4f1933
--- /dev/null
+++ b/django/website/hid/templates/hid/widgets/table.html
@@ -0,0 +1,40 @@
+<div class='panel panel-default'>
+    <div class='panel-heading'>
+        <i class='fa fa-table fa-w'></i>
+        {{ title }}
+    </div>
+    <div class='panel-body'>
+        <div class='table-responsive'>
+            <table class='table table-bordered table-hover table-stripped'>
+                <thead>
+                    <tr>
+                        {% for header in headers %}
+                            <th>
+                                {% if html %}
+                                    {{ header|safe }}
+                                {% else %}
+                                    {{ header }}
+                                {% endif %}
+                            </th>
+                        {% endfor %}
+                    </tr>
+                </thead>
+                <tbody>
+                    {% for row in rows %}
+                        <tr>
+                            {% for column in row %}
+                                <td>
+                                    {% if html %}
+                                        {{ column|safe }}
+                                    {% else %}
+                                        {{ column }}
+                                    {% endif %}
+                                </td>
+                            {% endfor %}
+                        </tr>
+                    {% endfor %}
+                </tbody>
+            </table>
+        </div>
+    </div>
+</div>
diff --git a/django/website/hid/widgets/table.py b/django/website/hid/widgets/table.py
new file mode 100644
index 0000000000000000000000000000000000000000..2f24c55941a14cd6e40b4e92d8db8a5f9ebc3b3c
--- /dev/null
+++ b/django/website/hid/widgets/table.py
@@ -0,0 +1,27 @@
+class TableWidget(object):
+    """ A table widget.
+
+        Eventually this should pull the table rows through the
+        data API. For now we pass these in via the settings.
+
+        Settings:
+            title: Title of the table
+            headers: Row of headers
+            rows: Rows of data (list of lists)
+            html: Set to true to indicate that the
+                  headers and data contain html
+                  and should not be escaped
+    """
+    template_name = 'hid/widgets/table.html'
+
+    def get_context_data(self, **kwargs):
+        title = kwargs.get('title', '(no title)')
+        headers = kwargs.get('headers', [])
+        rows = kwargs.get('rows', [])
+        html = kwargs.get('html', False)
+        return {
+            'title': title,
+            'headers': headers,
+            'rows': rows,
+            'html': html
+        }