changeset 5682:fff76ceb5e21

pullrequests: show date for changesets that are available for update
author Mads Kiilerich <madski@unity3d.com>
date Mon, 01 Feb 2016 21:22:59 +0100
parents 82ec506f7378
children 5fe9bb7acee6
files kallithea/templates/pullrequests/pullrequest_show.html
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/pullrequests/pullrequest_show.html	Mon Feb 01 21:22:39 2016 +0100
+++ b/kallithea/templates/pullrequests/pullrequest_show.html	Mon Feb 01 21:22:59 2016 +0100
@@ -188,13 +188,14 @@
                             ${h.radio(name='updaterev', value='', checked=True)}
                           %endif
                         </td>
-                        <td colspan="2">${_("Current revision - no change")}</td>
+                        <td colspan="4">${_("Current revision - no change")}</td>
                       %else:
                         <td>
                           %if editable and cs.revision in c.avail_revs:
                             ${h.radio(name='updaterev', value=cs.raw_id)}
                           %endif
                         </td>
+                        <td style="width: 120px"><span class="tooltip" title="${h.age(cs.date)}">${cs.date}</span></td>
                         <td>${h.link_to(h.show_id(cs),h.url('changeset_home',repo_name=c.cs_repo.repo_name,revision=cs.raw_id))}</td>
                         <td><div class="message" style="white-space:normal; height:1.1em; max-width: 500px; padding:0">${h.urlify_commit(cs.message, c.repo_name)}</div></td>
                       %endif