<%inherit file="/base/base.html"/> <%def name="title()"> ${c.repo_name} ${_('all pull requests')} <%def name="breadcrumbs_links()"> ${h.link_to(_(u'Home'),h.url('/'))} » ${h.link_to(c.repo_name,h.url('changelog_home',repo_name=c.repo_name))} » ${_('All pull requests')} <%def name="main()">
${self.breadcrumbs()}
%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))}

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