123456789101112131415 |
- {% macro get_table(headers,rows,table_height,table_width,lock_column_count,width) %}
- {% set all_headers = headers|split_row|add_width(width) %}
- {% set data_type = all_headers[0] %}
- {% set first_head = all_headers[1] %}
- {% set second_head = all_headers[2] %}
- {% if data_type==1 %}
- {% import 'single_head_table.html' as t %}
- {{t.get_table(first_head,rows,table_height,table_width,lock_column_count)}}
- {% else %}
- {% import 'multi_head_table.html' as t %}
- {{t.get_table(first_head,second_head,rows,table_height,table_width,lock_column_count)}}
- {% endif %}
- {% endmacro %}
|