# HG changeset patch # User Daniel Dourvaris # Date 2016-11-27 09:08:43 # Node ID 2123e47c32a3c64195e30da521792e8bfc5f1a67 # Parent 0e3d172c7ef1005f3487203f5eb3189ae9573c11 ux: fix show inline comments link diff --git a/rhodecode/templates/pullrequests/pullrequest_show.html b/rhodecode/templates/pullrequests/pullrequest_show.html --- a/rhodecode/templates/pullrequests/pullrequest_show.html +++ b/rhodecode/templates/pullrequests/pullrequest_show.html @@ -170,12 +170,12 @@ ${ungettext("%d Pull request comment", "%d Pull request comments", len(c.comments)) % len(c.comments)} %endif %if c.inline_cnt: - ## this is replaced with a proper link to first comment via JS linkifyComments() func - ${ungettext("%d Inline Comment", "%d Inline Comments", c.inline_cnt) % c.inline_cnt} + ${ungettext("%d Inline Comment", "%d Inline Comments", c.inline_cnt) % c.inline_cnt} %else: ${ungettext("%d Inline Comment", "%d Inline Comments", c.inline_cnt) % c.inline_cnt} %endif + % if c.outdated_cnt: ,${ungettext("%d Outdated Comment", "%d Outdated Comments", c.outdated_cnt) % c.outdated_cnt} ${_('(Show)')} % endif