blob: 322a0ebf4e1aeba3ac1fe78673431321bcbff91e (
plain) (
blame)
1
2
3
4
5
6
7
|
.accounts-grid
- if accounts.empty?
= render partial: 'accounts/nothing_here'
- else
= render partial: 'accounts/grid_card', collection: accounts, as: :account, cached: true
= paginate accounts
|