1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
class PeopleBlock < PeopleBlockBase
def self.description
c_('People')
end
def help
_('Clicking a person takes you to his/her homepage')
end
def default_title
_('{#} People')
end
def profiles
owner.people.no_templates
end
end
|