Merge branch 'develop' of 10.0.47.245:/home/trustie2 into develop
This commit is contained in:
commit
dc83d2e7e9
|
@ -1311,6 +1311,9 @@ module ApplicationHelper
|
|||
def show_watcher_profile(obj)
|
||||
count = 0
|
||||
html = ''
|
||||
if User.watched_by(obj.id).count == 0
|
||||
html << (content_tag "span", l(:label_no_current_watchers))
|
||||
end
|
||||
for user in User.watched_by(obj.id)
|
||||
html << (link_to image_tag(url_to_avatar(user), :class => "avatar"), user_path(user), :class => "avatar", :title => "#{user.name}")
|
||||
count = count + 1
|
||||
|
@ -1333,6 +1336,9 @@ module ApplicationHelper
|
|||
def show_fans_picture(obj)
|
||||
html = ''
|
||||
count = 0
|
||||
if obj.watcher_users.count == 0
|
||||
html << (content_tag "span", l(:label_no_current_fans))
|
||||
end
|
||||
for user in obj.watcher_users
|
||||
html << (link_to image_tag(url_to_avatar(user), :class => "avatar"), user_path(user), :class => "avatar", :title => "#{user.name}")
|
||||
count = count + 1
|
||||
|
|
Loading…
Reference in New Issue