I have an activerecord model Student. In show action of Student controller i retrieve the database data about a Student and display it in the view. Student object has fields like age, gender, dateofbirth, address, etc where a few fields are optional. Now in my view i display like this
Name : <%= @student.name %> Age : <%= @student.age %> I don't want the optional field labels to get displayed. So i used <% if @student.address.nil? %> -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

