Paste FIX log lines below

0 / {{ max_count }}


Example 1 (with ^A delimiter)
Example 2 (with ' | ' delimiter)
{% macro generate_table_headers(headers, transpose) %} {%- for header in headers -%} {%- autoescape false %} {%- if transpose %} {{ header }} {%- else %} {{ header|replace('\n', '
') }} {%- endif -%} {%- endautoescape -%} {%- endfor %} {% endmacro %} {% macro generate_table_comment_row(comment_row, transpose) %} {%- if comment_row and not transpose -%} {%- for comment_col in comment_row -%} {%- autoescape false %} {{ comment_col|replace('\n', '
') }} {%- endautoescape -%} {%- endfor %} {%- endif -%} {% endmacro %} {% macro format_row_transpose_cell(header, cell) %} {%- set classes = [] -%} {%- if cell | length > 36 -%} {{ classes.append("tdbreak") or '' }} {%- endif -%} {%- if header in ['35', '39', '49', '56', '11'] -%} {{ classes.append("td-highlight") or '' }} {%- endif -%} {%- if classes|length > 0 -%} {{ cell }} {%- else -%} {%- autoescape false %} {{ cell|replace('\n', '
') }} {%- endautoescape -%} {%- endif -%} {% endmacro %} {% macro generate_table_body(headers, rows, transpose) %} {% if transpose %} {% for row in rows %} {%- for cell in row -%} {{ format_row_transpose_cell(headers[loop.index-1], cell) }} {%- endfor -%} {% endfor %} {% else %} {% for row in rows -%} {%- for cell in row -%} {%- if cell | length > 36 %} {{ cell }} {%- else %} {{ cell }} {%- endif -%} {%- endfor %} {% endfor %} {% endif %} {% endmacro %} {% if rows | length > 0 %} {{ generate_table_headers(headers, transpose) }} {{ generate_table_comment_row(comment_row, transpose) }} {{ generate_table_body(headers, rows, transpose) }}
FIX lines in a grid ({{ size }})
{% endif %}
Fixations version: {{ version }}