Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/app/helpers/authorships_helper.rb @ 1086:5ebdeb79ea9c feature_550
Add "My Page" box for my projects. Currently this also affects the layout of the non-My-Page version of the My Projects list, need to adjust that
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Fri, 23 Nov 2012 14:29:55 +0000 |
parents | 3eb64cb3c7ac |
children |
line wrap: on
line source
# -*- coding: undecided -*- module AuthorshipsHelper # Generates a link to either author or user, depending on which is # available def link_to_authorship(authorship) s = '' if authorship.author.nil? # legacy reasons… s << h(authorship.name_on_paper) else if authorship.author.user.nil? s << link_to(authorship.name_on_paper, :controller => 'authors', :action => 'show', :id => authorship.author) else s << link_to(authorship.name_on_paper, :controller => 'users', :action => 'show', :id => authorship.author.user) end end s end end