13 lines
		
	
	
		
			345 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			345 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
[% USE CSV -%]
 | 
						|
[% CSV.dump([ 'Description' 'Port' 'Name' 'Vlan' ]) %]
 | 
						|
 | 
						|
[% WHILE (row = results.next) %]
 | 
						|
  [% 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 %]
 |