Project

General

Profile

Download (335 Bytes) Statistics
| Branch: | Tag: | Revision:
1ba05a93 Ohad Levy
module UsersHelper
def last_login_on_column record
6874bbd9 Paul Kelly
time_ago_in_words(record.last_login_on.getlocal) + " ago" if record.last_login_on
1ba05a93 Ohad Levy
end

def admin_column record
image_tag("true.png", :size => "18x18") if record.admin
end
6874bbd9 Paul Kelly
def auth_source_column record
record.auth_source.to_label if record.auth_source
end
1ba05a93 Ohad Levy
end