|  |  |  | @ -6,16 +6,24 @@ | 
			
		
	
		
			
				
					|  |  |  |  |   <% end %> | 
			
		
	
		
			
				
					|  |  |  |  |   <%= table.head do |head| %> | 
			
		
	
		
			
				
					|  |  |  |  |     <%= head.row do |row| %> | 
			
		
	
		
			
				
					|  |  |  |  |       <% row.cell(header: true, text: "Name") %> | 
			
		
	
		
			
				
					|  |  |  |  |       <% row.cell(header: true, text: "Registration number") %> | 
			
		
	
		
			
				
					|  |  |  |  |       <% row.cell(header: true, text: "Type") %> | 
			
		
	
		
			
				
					|  |  |  |  |       <% row.cell(header: true, text: "Name", html_attributes: { | 
			
		
	
		
			
				
					|  |  |  |  |         scope: "col", | 
			
		
	
		
			
				
					|  |  |  |  |       }) %> | 
			
		
	
		
			
				
					|  |  |  |  |       <% row.cell(header: true, text: "Registration number", html_attributes: { | 
			
		
	
		
			
				
					|  |  |  |  |         scope: "col", | 
			
		
	
		
			
				
					|  |  |  |  |       }) %> | 
			
		
	
		
			
				
					|  |  |  |  |       <% row.cell(header: true, text: "Type", html_attributes: { | 
			
		
	
		
			
				
					|  |  |  |  |         scope: "col", | 
			
		
	
		
			
				
					|  |  |  |  |       }) %> | 
			
		
	
		
			
				
					|  |  |  |  |     <% end %> | 
			
		
	
		
			
				
					|  |  |  |  |   <% end %> | 
			
		
	
		
			
				
					|  |  |  |  |   <% @organisations.each do |organisation| %> | 
			
		
	
		
			
				
					|  |  |  |  |     <%= table.body do |body| %> | 
			
		
	
		
			
				
					|  |  |  |  |       <%= body.row do |row| %> | 
			
		
	
		
			
				
					|  |  |  |  |         <% row.cell do %> | 
			
		
	
		
			
				
					|  |  |  |  |           <%= govuk_link_to(organisation.name, "organisations/#{organisation.id}/logs", class: "govuk-!-font-weight-bold") %> | 
			
		
	
		
			
				
					|  |  |  |  |         <% row.cell(header: true, html_attributes: { | 
			
		
	
		
			
				
					|  |  |  |  |           scope: "row", | 
			
		
	
		
			
				
					|  |  |  |  |         }) do %> | 
			
		
	
		
			
				
					|  |  |  |  |           <%= govuk_link_to(organisation.name, "organisations/#{organisation.id}/logs") %> | 
			
		
	
		
			
				
					|  |  |  |  |         <% end %> | 
			
		
	
		
			
				
					|  |  |  |  |         <% row.cell(text: organisation.housing_registration_no) %> | 
			
		
	
		
			
				
					|  |  |  |  |         <% row.cell(text: display_provider_type(organisation.provider_type)) %> | 
			
		
	
	
		
			
				
					|  |  |  | 
 |