Show last user activity in admin ordergroups too
This commit is contained in:
parent
8b8693df5a
commit
d56828fa4d
2 changed files with 15 additions and 4 deletions
10
app/helpers/admin/ordergroups_helper.rb
Normal file
10
app/helpers/admin/ordergroups_helper.rb
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
module Admin::OrdergroupsHelper
|
||||
def ordergroup_members_title(ordergroup)
|
||||
s = ''
|
||||
s += ordergroup.users.map(&:name).join(', ') if ordergroup.users.any?
|
||||
if ordergroup.contact_person.present?
|
||||
s += "\n" + Ordergroup.human_attribute_name(:contact) + ": " + ordergroup.contact_person
|
||||
end
|
||||
s
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue