# HG changeset patch # User Marcin Kuzminski # Date 2012-07-11 00:31:09 # Node ID a5e32ed7f790a41db0244d7f0972bf0d1d184b26 # Parent a52cee88d612e1272e4f5824799164cb1015cb29 little love for pull-requests list 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 @@ -21,7 +21,14 @@ %for pr in c.pull_requests: - #${pr.pull_request_id} +
+

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

+
${_('Title')}: ${pr.title}
+
${pr.description}
+
%endfor