You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
<tbody> |
|
{% for row in datasheet %} |
|
{% if row.is_main or row.is_sub %} |
|
{% include 'reports/cqm/_results-table-main-sub.html.twig' with {row: row, report_id: report_id, display_excluded: display_excluded, display_exception: display_exception} %} |
|
{% endif %} |
|
|
|
{% if row.is_provider %} |
|
{% if collate_outer and not loop.first %} |
|
<tr> |
|
<td colspan="6"> </td> |
|
</tr> |
|
{% endif %} |
|
{% include 'reports/cqm/_results-table-provider.html.twig' with {row: row, columns: columns} %} |
|
{% endif %} |
|
|
|
{% if row.is_plan %} |
|
{% if not loop.first %} |
|
<tr> |
|
<td colspan="{{ columns|attr }}"> </td> |
|
</tr> |
|
{% endif %} |
|
{% include 'reports/cqm/_results-table-plans.html.twig' with {row: row, columns: columns} %} |
|
{% endif %} |
|
|
|
{% if row.is_provider_group %} |
|
{% if not loop.first %} |
|
<tr> |
|
<td colspan="{{ columns|attr }}"> </td> |
|
</tr> |
|
{% endif %} |
|
{% include 'reports/cqm/_results-table-provider-group.html.twig' with {row: row, columns: columns} %} |
|
{% endif %} |
|
{% endfor %} |
|
</tbody> |