{% if has_sub_partitions %}
{{ partition.getOrdinal() }} |
|
{% else %}
{{ partition.getOrdinal() }} |
{% endif %}
{{ partition.getName() }} |
{% if has_description %}
{{- partition.getExpression() -}}
{{- partition.getMethod() == 'LIST' ? ' IN (' : ' < ' -}}
{{- partition.getDescription() -}}
{{- partition.getMethod() == 'LIST' ? ')' -}}
|
{% endif %}
{{ partition.getRows() }} |
{% set data_length = Util_formatByteDown(
partition.getDataLength(),
3,
1
) %}
{{ data_length[0] }}
{{ data_length[1] }}
|
{% set index_length = Util_formatByteDown(
partition.getIndexLength(),
3,
1
) %}
{{ index_length[0] }}
{{ index_length[1] }}
|
{{ partition.getComment() }} |
{% for action, icon in action_icons %}
{{ icon|raw }}
|
{% endfor %}
{% if has_sub_partitions %}
{% for sub_partition in partition.getSubPartitions() %}
|
{{ sub_partition.getOrdinal() }} |
{{ sub_partition.getName() }} |
{% if has_description %}
|
{% endif %}
{{ sub_partition.getRows() }} |
{% set data_length = Util_formatByteDown(
sub_partition.getDataLength(),
3,
1
) %}
{{ data_length[0] }}
{{ data_length[1] }}
|
{% set index_length = Util_formatByteDown(
sub_partition.getIndexLength(),
3,
1
) %}
{{ index_length[0] }}
{{ index_length[1] }}
|
{{ sub_partition.getComment() }} |
|
{% endfor %}
{% endif %}
{% endfor %}