changeset 7600:e795ad3c7d51

pull-request: limit date tooltip on comments to the age itself
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 24 Mar 2019 03:40:34 +0100
parents 353c5dcf9aa8
children c0b8d016cc3e
files kallithea/templates/changeset/changeset_file_comment.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/changeset/changeset_file_comment.html	Fri Mar 22 02:21:53 2019 +0100
+++ b/kallithea/templates/changeset/changeset_file_comment.html	Sun Mar 24 03:40:34 2019 +0100
@@ -15,6 +15,7 @@
 
           <span data-toggle="tooltip" title="${h.fmt_date(co.modified_at)}">
               ${h.age(co.modified_at)}
+          </span>
               %if co.pull_request:
                 <a href="${co.url()}">${_("comment")}</a>
                 ${_('on pull request')}
@@ -23,7 +24,6 @@
                 ${_('on this changeset')}
               %endif
               <a class="permalink" href="${co.url()}">&para;</a>
-          </span>
 
           %if co.author_id == request.authuser.user_id or h.HasRepoPermissionLevel('admin')(c.repo_name):
             %if co.deletable():