Skip to content

Instantly share code, notes, and snippets.

@c3mediagroup
Created June 16, 2009 02:27
Show Gist options
  • Save c3mediagroup/130489 to your computer and use it in GitHub Desktop.
Save c3mediagroup/130489 to your computer and use it in GitHub Desktop.
def apr_status_indicator(advisor)
# Version that matches feature. Expanding status possibilities to match clubsumm field
# qualified, on_target, not_on_target
status = advisor.apr_status.blank? ? "not_found" : advisor.apr_status
image_tag "icons/#{status}.png", :size => "16x16", :class => "tooltip", :title => status.humanize
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment