私がやろうとしているのはPending Quotes
、カウントが0
または>1
のPending Quote
場合は出力しますが、カウント==1
が の場合、出力は ですcount
。ただし、他の 2 つのケースは正常に機能し、明らかなものは何も表示されません。>1
2 true
<%= @pending.nil? ? '0' : @pending.count %>
<%= (!@pending.nil? and @pending.count > 1) or (!@pending.nil? and @pending.count == 0) ? 'Pending Quotes' : 'Pending Quote' %>