The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
[% USE CSV -%]
[% CSV.dump([ 'VLAN ID' 'VLAN Name' 'Device Count' 'Port Count' ]) %]

[% FOREACH row IN results %]
  [% mylist = [] %]
  [% mylist.push(row.vlan) %]
  [% mylist.push(row.description) %]
  [% mylist.push(row.dcount) %]
  [% mylist.push(row.pcount) %]
  [% CSV.dump(mylist) %]

[% END %]