diff --git a/pagure/ui/filters.py b/pagure/ui/filters.py index 3aa1ccb..f79a7c6 100644 --- a/pagure/ui/filters.py +++ b/pagure/ui/filters.py @@ -123,19 +123,19 @@ def format_loc(loc, commit=None, filename=None, prequest=None, index=None): output.append('
%s
' % line) output.append('') - tpl_edit = '' \ '' \ '' - tpl_edited = '' \ + tpl_edited = ' ' \ 'Edited %(human_edit_date)s by %(user)s ' tpl_delete = '' if cnt - 1 in comments: @@ -177,14 +177,14 @@ def format_loc(loc, commit=None, filename=None, prequest=None, index=None): '
' '' ' %(user)s' - '' + '' '%(human_date)s' '
' '
' '
' '
' - '

%(comment)s

' + '%(comment)s' '
' '
' '
' @@ -209,6 +209,7 @@ def format_loc(loc, commit=None, filename=None, prequest=None, index=None): 'human_date': humanize_date(comment.date_created), 'comment': markdown_filter(comment.comment), 'commentid': comment.id, + 'anchor': u'ΒΆ', } ) )