15 lines
		
	
	
		
			319 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			319 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
[% USE CSV %]
 | 
						|
[% CSV.dump([ 'Subnet' 'Size' 'Number of Active Nodes' 'Percent Utilization' ]) %]
 | 
						|
 | 
						|
[% FOREACH row IN results %]
 | 
						|
  [% mylist = [] %]
 | 
						|
  [% mylist.push(row.subnet) %]
 | 
						|
  [% mylist.push(row.subnet_size) %]
 | 
						|
  [% mylist.push(row.active) %]
 | 
						|
  [% mylist.push(row.percent) %]
 | 
						|
  [% CSV.dump(mylist) %]
 | 
						|
 | 
						|
[% END %]
 | 
						|
 | 
						|
 |