when User
reportable.display_name
when DiaryComment
- "#{reportable.diary_entry.title}, Comment id ##{reportable.id}"
+ I18n.t("issues.helper.reportable_title.diary_comment", :entry_title => reportable.diary_entry.title, :comment_id => reportable.id)
when Note
- "Note ##{reportable.id}"
+ I18n.t("issues.helper.reportable_title.note", :note_id => reportable.id)
+ end
+ end
+
+ def open_issues_count
+ count = Issue.visible_to(current_user).open.limit(100).size
+ if count > 99
+ content_tag(:span, "99+", :class => "count-number")
+ elsif count > 0
+ content_tag(:span, count, :class => "count-number")
end
end
end