diff --git a/rhodecode/templates/pullrequests/pullrequest_show_all.html b/rhodecode/templates/pullrequests/pullrequest_show_all.html --- a/rhodecode/templates/pullrequests/pullrequest_show_all.html +++ b/rhodecode/templates/pullrequests/pullrequest_show_all.html @@ -1,7 +1,7 @@ <%inherit file="/base/base.html"/> <%def name="title()"> - ${c.repo_name} ${_('All pull requests')} + ${c.repo_name} ${_('all pull requests')} <%def name="breadcrumbs_links()"> @@ -22,7 +22,11 @@ %for pr in c.pull_requests:
-

+

+ %if pr.is_closed(): + ${_('Closed')} + %endif + ${_('Pull request #%s opened by %s on %s') % (pr.pull_request_id, pr.author.full_name, h.fmt_date(pr.created_on))}