Guest User

Untitled

a guest
Jan 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <%= if @profile
  2. fg = FeatureGroup.find_by_profile_name(@profile.class.to_s)
  3. @coll = SoftwareRelease.find_all_by_feature_group_id(fg.id).sort_by(&:name)
  4. options_from_collection_for_select(@coll, :id, :name, :selected => nil)
  5. else
  6. options_for_select([["Nothing to select", ""]])
  7. end %>
Add Comment
Please, Sign In to add comment