Quick correction on organisations' count

This commit is contained in:
echarp 2019-05-15 20:06:14 +02:00
parent 412d116bea
commit 6b695d7350
1 changed files with 11 additions and 9 deletions

View File

@ -10,12 +10,14 @@
%em.fa{ class: "fa-#{kind.icon}" }
= count
%li{ title: Kind.human_attribute_name('active').pluralize + '?' }
- p[:kind_id_eq] = params[:q][:kind_id_eq]
\/
= link_to orgas_url(q: p, active: params[:active].present? && params[:active] != 'true') do
- if params[:active].nil? || params[:active] == 'true'
%em.fa.fa-heartbeat
- else
%em.fa.fa-heart-broken
= @unfiltered_orgas.count
- count = @unfiltered_orgas.count :all
- if count.positive?
%li{ title: Kind.human_attribute_name('active').pluralize + '?' }
- p[:kind_id_eq] = params[:q][:kind_id_eq]
\/
= link_to orgas_url(q: p, active: params[:active].present? && params[:active] != 'true') do
- if params[:active].nil? || params[:active] == 'true'
%em.fa.fa-heartbeat
- else
%em.fa.fa-heart-broken
= count