8 lines
255 B
HTML
8 lines
255 B
HTML
<div class="box">
|
|
<h2 class="subtitle">{{ report.label }}</h2>
|
|
{% if report.chart == 'table' %}
|
|
<table id="table-{{ report.name }}" class="table is-striped"></table>
|
|
{% else %}
|
|
<canvas id="chart-{{ report.name }}"></canvas>
|
|
{% endif %}
|
|
</div>
|