Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If in my BusinessStore model/table I have the boolean:

create_table :business_stores do |t|
    t.boolean :online_store
end

And in my view I wanted it to say "Online" instead of true or false as a string:

<% @business_stores.each do |business_store| %>
    <%= business_store.online_store %>
<% end %>

How would it be done?

share|improve this question

3 Answers

up vote 3 down vote accepted
<% @business_stores.each do |business_store| %>
    <%= "Online" if business_store.online_store %>
<% end %>
share|improve this answer

Maybe so:

<%= business_store.online_store ? "Online" : "Offline" %>

?

share|improve this answer

I go by the rule to keep the logic out of views, so I would create a method in the BusinessStore model:

def BusinessStore < ActiveRecord::Base
    def status
       if online_store
         "Online"
       else
         "Some other type or blank"
       end
    end
end

Then in the view

<%= business_store.status %>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.