How are you. I have just installed padrino framework admin panel. And it shows several tabs in admin module. I want to rename the labels. but how to do it? This is view side code
<%= link_to project_module.human_name, url(project_module.path) %>
Here I can't set human_name of project_module. And this is module definition in application.rb
access_control.roles_for :admin do |role|
role.project_module :accounts, '/accounts'
role.project_module :venues, '/venues'
role.project_module :shows, '/shows'
end
Now tabs labels are Accounts, Venues, Shows. how to set them as Users, MyVenues, MyShows? Thanks