all_report.html 468 B

12345678910111213
  1. {% macro get_report(all_reports) %}
  2. {% import 'table.html' as t %}
  3. {% import 'chart.html' as c %}
  4. {% for report in all_reports %}
  5. {% set _report = report|str_to_obj %}
  6. {% if _report.is_table %}
  7. {{t.get_table(_report.headers,_report.rows,_report.table_height,_report.table_width,_report.lock_column_count,_report.column_width)}}
  8. {% else %}
  9. {{c.get_chart(_report.chart,_report.chart_id,_report.table_height,_report.table_width)}}
  10. {% endif %}
  11. {% endfor %}
  12. {% endmacro %}