11 lines
397 B
HTML
11 lines
397 B
HTML
<div class="box">
|
|
<h2 class="subtitle">
|
|
{% if report.icon %}<span class="icon is-small"><img src="icons/{{ report.icon }}.svg" alt="{{ report.icon }}"></span>{% endif %}
|
|
{{ 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>
|