Created
June 16, 2009 02:27
-
-
Save c3mediagroup/130489 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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