diff --git a/rhodecode/templates/pullrequests/pullrequest_data.html b/rhodecode/templates/pullrequests/pullrequest_data.html new file mode 100644 --- /dev/null +++ b/rhodecode/templates/pullrequests/pullrequest_data.html @@ -0,0 +1,33 @@ +## -*- coding: utf-8 -*- + +% for pr in c.pullrequests_pager: +
+
+ %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 + +
+ +${c.pullrequests_pager.pager('$link_previous ~2~ $link_next')} +