13 lines
313 B
Plaintext
13 lines
313 B
Plaintext
[% USE CSV -%]
|
|
[% CSV.dump([ 'VLAN ID' 'VLAN Names' 'Device Count' 'Port Count' ]) %]
|
|
|
|
[% FOREACH row IN results %]
|
|
[% mylist = [] %]
|
|
[% mylist.push(row.vlan) %]
|
|
[% mylist.push(row.description.join(',')) %]
|
|
[% mylist.push(row.dcount) %]
|
|
[% mylist.push(row.pcount) %]
|
|
[% CSV.dump(mylist) %]
|
|
|
|
[% END %]
|