# HG changeset patch # User Marcin Kuzminski # Date 2013-01-29 21:49:04 # Node ID 99cb0cf75a4c802e37f9f763743f6fc7c9c1f47b # Parent 6f71e6f81c9f38d3034e2863fcf158825a8a3fc2 some formatting on list of pull-requests 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 @@ -22,16 +22,17 @@ %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))} - +

+ %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))} +

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