* Replace will_paginate with kaminari * Use #page instead of #paginate in controllers * Replace will_paginate.page_gap with pagination.truncate in i18n * Customize kaminari views to match prior styles * Set kaminari options to match prior behavior * Replace will_paginate with paginate in views
		
			
				
	
	
		
			13 lines
		
	
	
		
			319 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			319 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| - content_for :page_title do
 | |
|   = t('accounts.people_who_follow', name: display_name(@account))
 | |
| 
 | |
| = render partial: 'header'
 | |
| 
 | |
| .accounts-grid
 | |
|   - if @followers.empty?
 | |
|     = render partial: 'nothing_here'
 | |
|   - else
 | |
|     = render partial: 'grid_card', collection: @followers, as: :account, cached: true
 | |
| 
 | |
| = paginate @followers
 |