Files
netdisco/Netdisco/share/views/ajax/search/port_csv.tt
Eric A. Miller 4f7a2097fc DataTables for port search results tab
Use device_port_vlan table to search for VLANs rather than the device_port table
2014-06-02 22:47:34 -04:00

13 lines
341 B
Plaintext

[% USE CSV -%]
[% CSV.dump([ 'Description' 'Port' 'Name' 'Vlan' ]) %]
[% FOREACH row IN results %]
[% mylist = [] %]
[% myport = "$row.ip [ $row.port ] (" _ row.device.dns _ ")" IF row.device.dns %]
[% FOREACH col IN [ row.name myport row.descr row.vlan ] %]
[% mylist.push(col) %]
[% END %]
[% CSV.dump(mylist) %]
[% END %]