In our coding (below), when attaching a file under the “custom.some.thing” group in the fori loop, it also shows this in the second selection “custom.some.thingy” file attachment.
Is this due to it being a file collection in the same loop of a fori, or is there something else wrong?
We want to be able to attach different groups of files at these two parts of our code.
{% stripnewlines %}
|Date
|Quarter
|Staff Member
|Info for next quarter
|Attachment
|Date of update
|Staff Member
|Update note
|Attachment{% newline %}
|—10%—
|—15%—
|—6%—
|—25%—
|—8%—
|—10%—
|—6%—
|—25%—
|—8%—{% newline %}
{% fori quarters in custom.some %}
|{% input quarters.Date as:date %}
|{% input quarters.Quarter as:text %}
|{% input quarters.Name as:text placeholder:“” %}
|{% input quarters.Info as:text %}
|{% input quarters.thing as:file %}
|{% input quarters.DateOfUpdate as:date %}
|{% input quarters.Name2 as:text placeholder:“” %}
|{% input quarters.Updated_Info as:text %}
|{% input quarters.Thingy as:file %}{% newline %}
{% endfori %}
{% endstripnewlines %}