changeset 5070:6c631f531a06

changelog_summary: show changeset status label rather than raw status Instead of showing the changeset status as e.g. under_review, use 'Under Review', like all other similar code.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Wed, 22 Apr 2015 22:10:11 +0200
parents 3105842da68f
children 26cbd84f0493
files kallithea/templates/changelog/changelog_summary_data.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/changelog/changelog_summary_data.html	Wed Apr 22 22:09:15 2015 +0200
+++ b/kallithea/templates/changelog/changelog_summary_data.html	Wed Apr 22 22:10:11 2015 +0200
@@ -17,7 +17,7 @@
               %if c.statuses.get(cs.raw_id):
                 <div class="changeset-status-ico shortlog">
                 %if c.statuses.get(cs.raw_id)[2]:
-                  <a class="tooltip" title="${_('Changeset status: %s\nClick to open associated pull request #%s') % (c.statuses.get(cs.raw_id)[0], c.statuses.get(cs.raw_id)[2])}" href="${h.url('pullrequest_show',repo_name=c.statuses.get(cs.raw_id)[3],pull_request_id=c.statuses.get(cs.raw_id)[2])}">
+                  <a class="tooltip" title="${_('Changeset status: %s\nClick to open associated pull request #%s') % (c.statuses.get(cs.raw_id)[1], c.statuses.get(cs.raw_id)[2])}" href="${h.url('pullrequest_show',repo_name=c.statuses.get(cs.raw_id)[3],pull_request_id=c.statuses.get(cs.raw_id)[2])}">
                     <i class="icon-circle changeset-status-${c.statuses.get(cs.raw_id)[0]}"></i>
                   </a>
                 %else: