+ 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.positive?
+ content_tag(:span, count, :class => "count-number")