add link to member front page for show view

This commit is contained in:
EricTYL 2020-01-02 11:56:37 +08:00
parent e8478468de
commit 7a0e669775
1 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ class Book
when "url"
value = self.url.to_s.blank? ? "" : "<a href='#{self.url}'>#{self.url}</a>"
when "authors"
value = get_authors_show(self)
value = get_member_show(self) rescue "#"
else
value = (self.send(field) rescue "")
end
@ -203,4 +203,4 @@ class Book
self.url = 'http://' + self.url
end
end
end
end