Todd TWdeveloper
2014-Jan-02 17:24 UTC
Having trouble setting up my View Page to only show Specific Data?
Hello, In my view (index.html) I have a table that calls all of my projects. <% @projects.each do |project| %> I created 2 methods in the Model, project.late? and project.dueSoon? In these methods I used If Then Elsif Else Blocks to form my logic, all based on a bunch of my date fields which determine if the project is late or dueSoon. I have also created a class that takes the Late and due soon methods and adds a Color-Background style if the Specific project is valid. <% colorClass = project.late? ? "late" : project.dueSoon? ? "dueSoon" : "ok" %> <td class=<%= colorClass %>><%= link_to project.product, project %></td> All this works great in my index View. My goal now is to create a 2nd View, delinquent.html.erb page that only returns the project(s) of Projects.project that are Late or dueSoon. If someone could assist me with this that would be great. Thank You. -- 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 unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/1902a69e526fa05c30c5119a5e4c5b6b%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.