Loop data in a template inside a table with column headings

Product:

Product Version: PDFNet 9.4.2

Please give a brief summary of your issue:
When looping the data inside a table which has column headings, the heading are also repeating with the data.

Please describe your issue and provide steps to reproduce it:
(The more descriptive your answer, the faster we are able to help you)
Comments

Date Comment{{loop data.notes}}
{{date}} {{description}}

{{endloop}}

The result is showing Date and Comments heading repeatedly.
Please provide a link to a minimal sample where the issue is reproducible:

I fixed it
Comments

Date Comment
{{loop data.notes}}{{date}} {{description}}
{{endloop}}

To investigate further could you please provide the following information.

  1. Input file(s)

  2. Generated output file(s)

  3. Code and settings used to generate (2) from (1)

  4. Screenshots showing the output, and clearly indicating what you expected to get instead, and also clearly indicating the application/browser being used to view.

This can be closed as I had fixed by moving the {{ loop …}} from the table headings to the first cell on the table row.