# HG changeset patch # User Marcin Kuzminski # Date 2020-06-12 07:34:17 # Node ID b8cc803a11ccdd625cc72de8f4e4c82e951a1785 # Parent 48c9bc8defaafd03fdb2e74f0d2abc6d49be268b comments: show nicer tooltip about outdated comments. diff --git a/rhodecode/templates/codeblocks/diffs.mako b/rhodecode/templates/codeblocks/diffs.mako --- a/rhodecode/templates/codeblocks/diffs.mako +++ b/rhodecode/templates/codeblocks/diffs.mako @@ -677,9 +677,9 @@ def get_comments_for(diff_type, comments %if line_old_comments: <% has_outdated = any([x.outdated for x in line_old_comments]) %> % if has_outdated: - + % else: - + % endif %endif @@ -720,9 +720,9 @@ def get_comments_for(diff_type, comments %if line_new_comments: <% has_outdated = any([x.outdated for x in line_new_comments]) %> % if has_outdated: - + % else: - + % endif %endif @@ -776,9 +776,9 @@ def get_comments_for(diff_type, comments % if comments: <% has_outdated = any([x.outdated for x in comments]) %> % if has_outdated: - + % else: - + % endif % endif