changeset 2586:a5e32ed7f790 beta

little love for pull-requests list
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 11 Jul 2012 00:31:09 +0200
parents a52cee88d612
children c1c66976001a
files rhodecode/templates/pullrequests/pullrequest_show_all.html
diffstat 1 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/templates/pullrequests/pullrequest_show_all.html	Wed Jul 11 00:11:45 2012 +0200
+++ b/rhodecode/templates/pullrequests/pullrequest_show_all.html	Wed Jul 11 00:31:09 2012 +0200
@@ -21,7 +21,14 @@
     </div>
 
     %for pr in c.pull_requests:
-        <a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}">#${pr.pull_request_id}</a>
+        <div>
+          <h4><a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=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))}
+          </a>
+          </h4>
+          <h5 style="border:0px;padding-bottom:0px">${_('Title')}: ${pr.title}</h5>
+          <div style="padding:0px 24px">${pr.description}</div>
+        </div>
     %endfor
 
 </div>