Skip to content
Snippets Groups Projects
Commit a4af0080 authored by Alice Heaton's avatar Alice Heaton :speech_balloon:
Browse files

Implement simple table widget. The data is currently stored in the widget...

Implement simple table widget. The data is currently stored in the widget settings, but this should be connected to the data api as and when needed
parent 759a70ef
No related branches found
No related tags found
No related merge requests found
from dashboard.widget_pool import register_widget from dashboard.widget_pool import register_widget
from hid.widgets.chart import QuestionChartWidget from hid.widgets.chart import QuestionChartWidget
from hid.widgets.table import TableWidget
register_widget('question-chart-widget', QuestionChartWidget()) register_widget('question-chart-widget', QuestionChartWidget())
register_widget('table-widget', TableWidget())
<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>
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
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment