12 lines
		
	
	
		
			308 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			308 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
[% USE CSV -%]
 | 
						|
[% CSV.dump(headers) %]
 | 
						|
 | 
						|
[% WHILE (row = results.next) %]
 | 
						|
  [% mylist = [] %]
 | 
						|
  [% device = row.dns || row.ip %]
 | 
						|
  [% FOREACH col IN [ device row.contact row.location row.name row.model row.os_ver row.ip row.serial] %]
 | 
						|
    [% mylist.push(col) %]
 | 
						|
  [% END %]
 | 
						|
  [% CSV.dump(mylist) %]
 | 
						|
 | 
						|
[% END %] |